Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.08 KB

README.md

File metadata and controls

31 lines (23 loc) · 1.08 KB

braceletus

Reference Links

Setup your SSH key

  1. Verify if you have an SSH key setup with cat ~/.ssh/id_rsa
  2. If no SSH key is found, generate it with ssh-keygen -t rsa
  3. Copy your SSH key to your clipboard with pbcopy < ~/.ssh/id_rsa.pub
  4. Your SSH key is now in your clipboard. Go copy it in your Github Account

Setup Project

  1. Fork the project
  2. Clone your Fork with git clone [email protected]:username/braceletus.git
  3. Add a remote to original repo with git remote add upstream [email protected]:AustinDidierTran/braceletus.git
  4. You are now ready to code!

Development flow

  1. Make your modifications
  2. Stage your files with git add .
  3. Create your commit with git commit -m "Commit message"
  4. Update your upstream with git fetch upstream
  5. Fetch the last changes with git pull upstream 'branch'
  6. Solve conflicts if necessary
  7. Push your changes with git push 'remote' 'branch'
  8. Generate a Pull Request on github.com