You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
644 B
20 lines
644 B
|
|
|
|
|
|
┏┓ ┏━┓┏━┓┏┓╻┏━╸╻ ╻╻┏┓╻┏━╸
|
|
┣┻┓┣┳┛┣━┫┃┗┫┃ ┣━┫┃┃┗┫┃╺┓
|
|
┗━┛╹┗╸╹ ╹╹ ╹┗━╸╹ ╹╹╹ ╹┗━┛
|
|
|
|
|
|
|
|
Switching between branches with
|
|
- $ git switch <branch-name>
|
|
- $ git switch -
|
|
|
|
Cannot switch if that would overwrite modifications
|
|
|
|
Untracked files will simply "move along"
|
|
|
|
Delete or rename a branch:
|
|
- $ git branch -d <branch-name>
|
|
- $ git branch -m <oldbranch> <newbranch>
|