-
Create the repo
git init
-
Add and commit your files
git add . git commit
-
Add a remote and push to GitHub
git remote add ... git push origin master
-
Make changes to files...
-
Add and commit the changes you've made
git add FILE1 FILE2 git commit
-
Push the changes up to GitHub
git push origin master
-
Moving all files with a certain extension to a directory
mv *.ipynb codeup
-
Creating the
atom
commandln -s /Applications/Atom.app/Contents/Resources/app/atom.sh /usr/local/bin/atom chmod +x /usr/local/bin/atom
-
Changing the default git commit editor
git config --global core.editor 'atom -n -w'