Lecture Others

About Git, Putty and WinSCP

-git pull and push

git add .
git commit -m “Commit Message”
git pull
git push

-create new git tag and git branch on the esixing branch and then pull and push

git clone
cd
git tag
git checkout -b
git push origin

for example)
git clone
cd
git add .
git commit -m “commit message”
git pull <—- merge into your project with updated codes from Git ———>
git push <—- to master branch —>

https://datasift.github.io/gitflow/IntroducingGitFlow.html

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *