FavoriteLoadingAdd to favorites

So this is the current branches for this tutorial repositort just as a hypothetical example :
Branches (NB!! -> Only 1 example branch | develop | also the main branch in this example)
develop

Step 1 :
Create a new branch for a new feature

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
git checkout -b new-branch-name-goes-here
git checkout -b new-branch-name-goes-here
git checkout -b new-branch-name-goes-here

Step 2 :
When your new branch is ready to submit code back into the system. First step you need to publish the branch to github. Assuming you haven’t already done it.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
git push --set-upstream origin new-branch-name-goes-here
git push --set-upstream origin new-branch-name-goes-here
git push --set-upstream origin new-branch-name-goes-here

Step 3 :
Now that your branch is published you can add and commit your changes to
new-branch-name-goes-here

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
git status
git add -A
git commit -m "Your new message to describe what you have done goes inside these inverted commas"
// Ensure your branch is up to date with your latest changes by running git status again
git status
// If your branch say up to date then you are good. Else you have done something wrong and need to try again.
git status git add -A git commit -m "Your new message to describe what you have done goes inside these inverted commas" // Ensure your branch is up to date with your latest changes by running git status again git status // If your branch say up to date then you are good. Else you have done something wrong and need to try again.
git status

git add -A

git commit -m "Your new message to describe what you have done goes inside these inverted commas"

// Ensure your branch is up to date with your latest changes by running git status again
git status

// If your branch say up to date then you are good. Else you have done something wrong and need to try again. 

Step 4 :
You can switch back to your main branch which you will then merge the new branch you were working on back into your main branch. In this case our main branch is develop

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
git checkout develop
git merge new-branch-name-goes-here
git checkout develop git merge new-branch-name-goes-here
git checkout develop

git merge new-branch-name-goes-here

Step 5 :
After you run “git merge new-branch-name-goes-here” you gshould get notified of all the conflicts if there are any.
Resolve the conflicts in your IDE (Integrated Development Environment) and then push your now updated main branch (develop) back into itself.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
git push origin develop
git push origin develop
git push origin develop

Pin It on Pinterest

Garth Baker
Favorite
Loading
en
af
sq
am
ar
hy
az
eu
be
bn
bs
bg
ca
ceb
ny
zh-CN
zh-TW
co
hr
cs
da
nl
en
eo
et
tl
fi
fr
fy
gl
ka
de
el
gu
ht
ha
haw
iw
hi
hmn
hu
is
ig
id
ga
it
ja
jw
kn
kk
km
ko
ku
ky
lo
la
lv
lt
lb
mk
mg
ms
ml
mt
mi
mr
mn
my
ne
no
ps
fa
pl
pt
pa
ro
ru
sm
gd
sr
st
sn
sd
si
sk
sl
so
es
su
sw
sv
tg
ta
te
th
tr
uk
ur
uz
vi
cy
xh
yi
yo
zu
Share This