[Git]: Pulling Commit from Other Repository
git
03/21/2020
BASH
# Adding other repository as a remotegit remote add other <GitHub_Path>
# Retrieve commits from other repogit remote update
# Check commits of other repo & current repogit log --all --oneline --10 # i.e. shoing 10 logs
# Cherry pick commitsgit cherry-pick 1a2b3cd # Put more commit SHA if needed
# Confirm local repositorygit log
# Pushgit push origin master
# Delete other repo form remotegit remote remove other
# View remote repositoriesgit remote