mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
10 lines
294 B
Plaintext
10 lines
294 B
Plaintext
|
|
% git branch better_refresh # Create a branch.
|
|
% git branch # List branches.
|
|
|
|
% git checkout better_refresh # Switch to a branch.
|
|
% git checkout master # Switch back to the mainline.
|
|
% git merge better_refresh # Merge a branch back with the mainline.
|
|
|
|
|