Manas23601 / GSoC-pgRouting

Semi-mirror repository for GSoC students work
GNU General Public License v2.0
0 stars 0 forks source link

Task 2: Experience with GitHub & Git #1

Open Manas23601 opened 2 years ago

Manas23601 commented 2 years ago
Manas23601 commented 2 years ago

Log of Commands:

To clone the repo

git clone https://github.com/Manas23601/GSoC-pgRouting.git

Create remote named upstream

git remote add upstream https://github.com/pgRouting/GSoC-pgRouting

Change branch

git branch -a  # to check available branches
git checkout remotes/upstream/develop # change to remote branch develop
git checkout -b manas23601-test  # create your local branch and change to it

Push code

git add .
git commit -m "added name to the list of contributors"
git push upstream