Git

Git is version control software used in Software Engineering

Update local feature from master branch

git checkout the_branch_you_want_to_update

git merge origin/master


For same changes to reflect in remote branch

git push origin  the_branch_you_want_to_update  //to update the remote feature branch

Maintain multiple users in git without ssh for specfic repos

Refer

Edit this page on GitHub