git
git / GitHub notes
· ☕ 2 min read · ✍️ Ben Mason
git / GitHub notes Find all report in HOME 1 2 3 4 5 6 for d in `find $HOME -name ".git"`; do cd $d/..; echo `pwd`:; git status; echo; done working with upstreams fork repo from main repo to account clone repo locally edit local files add and commit changes push changes to local account create pull request with change to merge upstream Add upstream repo Configuring a remote for a fork – User Documentation