709 B
709 B
Git
Dienstag, 15. Oktober 2019
22:51
Version Control
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>