1.0 KiB
1.0 KiB
Chirp detection - GP2023
Git-Repository and commands
- Go to the Bendalab Git-Server (https://whale.am28.uni-tuebingen.de/git/)
- Create your own account (and tell me ;D)
- I'll invite you the repository
- Clone the repository
git clone https://whale.am28.uni-tuebingen.de/git/raab/GP2023_chirp_detection.git
Basic git commands
- pull changes in git
git pull origin <branch>
- commit chances
git commit -m '<explaination>' file # commit one file
git commit -a -m '<explaination>' # commit all files
- push commits
git push origin <branch>
Branches
Use branches to work on specific topics (e.g. 'algorithm', 'analysis', 'writing', ore even more specific ones) and merge them into Master-Branch when it works are up to your expectations.
The "master" branch should always contain a working/correct version of your project.
- Create/change into branches
git checkout -b <new branch>
git checkout <existing branch>