-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Check out a repository:(https://help.github.com/articles/fork-a-repo/)
git clone LINK_TO_THE_GIT_REPOSITORY
git remote add upstreamLINK_TO_THE_GIT_REPOSITORY
To swicth/checkout branch
git checkout -b origin NAME_OF_BRANCH
(we may have to setup the upstream: git branch --set-upstream-to=origin/NAME_OF_BRANCH
To Update the repository
git pull
To push code to repository
git add NAME_OF_FILE
or git add . (to add all file)
git commit -am "Message"
git push origin NAME_OF_BRANCH
Reactions are currently unavailable