git.rinkkasatiainen.fi

Github pages - my own learning diary


View My GitHub Profile

Merge from other remote

Merge from other remote:
  1. Set remote origin
git remote add www https://github.com/rinkkasatiainen/rinkkasatiainen.github.com.git
  1. pull from remote
git fetch www branches
  1. create local branch
git checkout -b www-using-branches --track www/using-branches
  1. merge
git merge using-branches