Skip to content

ask-org/e-commerce

Repository files navigation

E-commerce project for ASK-DEV

Git habits

Cloning the repository

# Step 1. Clone the project
git clone https://github.com/ask-org/e-commerce.git

# Step 2. Create a local branch you want to work on 
git checkout -b [your branch name]

Pulling any latest updates

# Step 1. commit your latest code in your working branch
git add .
git commit -m "Commit message here"

# Setp 2. Checkout into testing and pull any latest updates
git checkout testing
git pull origin testing

# Step 3. Go back to your original branch
git checkout [your branch name]
git merge testing

Pushing the latest updates

# Step 1. commit your latest code in your working branch
git add .
git commit -m "Commit message here"

# Setp 2. Checkout into testing and pull any latest updates
git checkout testing
git pull origin testing

# Step 2. Crete a local branch you want to work on 
git checkout [your branch name]

Pulling any latest updates to your local branch

# Step 1. commit your latest code in your working branch
git add .
git commit -m "Commit message here"

# Setp 2. Checkout into testing and pull any latest updates
git checkout testing
git pull origin testing

# Step 3. Merge your latest commit into the testing branch
git merge [your branch name]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors