Check this link for complete markdown syntax
git clone urlgit push origin mybranchgit add myfile.pygit commit -m "i changed this and this and this"git commit -am `I changed this and this on this file already added`> git remote
origin
upstream
> git remote show // seems to be the same as git remove> git remote show origin
* remote origin
Fetch URL: https://github.com/PixarAnimationStudios/OpenTimelineIO.git
Push URL: https://github.com/PixarAnimationStudios/OpenTimelineIO.git
HEAD branch: master
Remote branch:
master tracked
Local branch configured for 'git pull':
master merges with remote master
Local ref configured for 'git push':
master pushes to master (up to date)xclip -sel clip < ~/.ssh/id_dsa.pub
git remote add upstream git@github.com:PixarAnimationStudios/OpenTimelineIO.git> git merge upstream/master
> git log --oneline --graph --all> git fetch upstreamgit remote add forked /home/tdervieux/tree/OpenTimelineIO
or
git remote add upstream git@github.com:PixarAnimationStudios/OpenTimelineIO.git
or
git remote add upstream https://github.com/PixarAnimationStudios/OpenTimelineIO.git[otio] > git rebase -i forked/mastergit push forked otioviewerFeature> gitk --allgit config --global diff.external ~/git-diff-wrapper.shThen add the following in ~/git-diff-wrapper.sd
/bin/xxdiff $2 $5git fetch upstream
git checkout Ruler
git rebase -i upstream/master
# in the editor that pops out, you want to delete the line with teh commit from the other branch -- should be the first one, with the commit message "add frame all function"
after its done rebasing, then you :
git push origin Ruler --force
# you need to --force because you rebased.- cd to $VIRTUAL_ENV_ROOT
- virtualenv my_env_name #(otio)
- source my_env_name/bin/activate.csh
- pip install -U pip
- pip install -U setuptools
- cd ~/otio_dir
- pip install -e .
- pip install PySide2==5.11.0
- pip install -e .[dev] #linter, mock library
- rehash; which otioview #should be pointing at your dir```
11.to turn it off: deactivate