Guide to use Git Repository
$ git config --global user.name "Sam Smith"
$ git config --global user.email
$ git remote add origin https://github.com/USERNAME/REPOSITORY_NAME.git
$ git pull origin master
$ git pull origin master
$ git checkout -b "testbranch-1" { to Change New Branch }
$ git add MySuperProject/
$ git status
$ git commit -m "commit message"
$ git push -u origin testbranch-1
$ git fetch // to fetch latest branch
Comments
Post a Comment