File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed
Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 1+ # Add new submodule
2+ git submodule add git:// github.com / jquery/ jquery.git externals/ jquery
3+ git submodule update -- init -- recursive
Original file line number Diff line number Diff line change 1+ # create a new Git branch based on a specific commit SHA
2+ git checkout - b BRANCH_NAME COMMIT_SHA
Original file line number Diff line number Diff line change 1+ # # Specify user
2+ git config user.name " AuthorExample"
3+ git config user.email " ae@duck.com"
Original file line number Diff line number Diff line change 1+ # list all worktrees
2+ git worktree list
3+
4+ # add a worktree to folder _branch using branch 'issues/templates_enabled_flag'
5+ git worktree add _branch issues/ templates_enabled_flag
6+
7+ # remove a worktree from folder _branch
8+ git worktree remove _branch
You can’t perform that action at this time.
0 commit comments