SecondBrain/Ralf @ Ralf Koop/Schnelle Notizen/03_Git.md
Ralf Koop e138992abe .
2022-12-21 12:30:21 +01:00

709 B

Git

Dienstag, 15. Oktober 2019

22:51

 

Version Control

 

 

https://www.git-tower.com

 

https://t3n.de/news/git-eigener-git-server-544264/

 

 

Git ceate a Branch lokal :

git branch -d branch_name oder

git checkout -b <branch-name>

 

Aus <https://stackoverflow.com/questions/33546137/how-to-create-a-new-branch-on-both-local-and-remote-git>

 

 

Remote :

git push <remote-name> <branch-name>

 

 

 

Git delete a Branch lokal

git branch -D branch_name

Remote :

git push <remote_name> --delete <branch_name>

 

 

 

Aus <https://stackoverflow.com/questions/2003505/how-do-i-delete-a-git-branch-locally-and-remotely>