IDEA Settings Repo

git@github.com:finalcreator/idea_settings.git

  1. #Quick setup — if you’ve done this kind of thing before
  2. x-github-client://openRepo/https://github.com/finalcreator/idea_settings
  3. #…or create a new repository on the command line
  4. echo "# idea_settings" >> README.md
  5. git init
  6. git add README.md
  7. git commit -m "first commit"
  8. git remote add origin git@github.com:finalcreator/idea_settings.git
  9. git push -u origin master
  10. #…or push an existing repository from the command line
  11. git remote add origin git@github.com:finalcreator/idea_settings.git
  12. git push -u origin master
  13. #…or import code from another repository
  14. You can initialize this repository with code from a Subversion, Mercurial, or TFS project.

Alias

log

  1. // in bashrc
  2. alias 'gitlol'='git log --oneline --graph --all --decorate'
  3. or
  4. // git alias
  5. 'git log --oneline --graph --all --decorate