- One Drive: https://1drv.ms/f/s!AojJeyhfJsx_gZoyI18SXwCGGfyLeg
- angular-datatables: https://l-lin.github.io/angular-datatables/archives/#/welcome
- Verify if you have an SSH key setup with cat ~/.ssh/id_rsa
- If no SSH key is found, generate it with ssh-keygen -t rsa
- Copy your SSH key to your clipboard with pbcopy < ~/.ssh/id_rsa.pub
- Your SSH key is now in your clipboard. Go copy it in your Github Account
- Fork the project
- Clone your Fork with git clone [email protected]:username/braceletus.git
- Add a remote to original repo with git remote add upstream [email protected]:AustinDidierTran/braceletus.git
- You are now ready to code!
- Make your modifications
- Stage your files with git add .
- Create your commit with git commit -m "Commit message"
- Update your upstream with git fetch upstream
- Fetch the last changes with git pull upstream 'branch'
- Solve conflicts if necessary
- Push your changes with git push 'remote' 'branch'
- Generate a Pull Request on github.com