Branches are a major feature of Git management. In multi-person development of large projects, many branches are often encountered, and many branches need to be temporarily reserved. You can consider using folders to manage branches with different features.

The git branch command supports the path/branch name format and pushes the path to the remote end.

Effects on the command line:

Effect in graphical tools sourceTree:

Git command:

Git push origin [path]/[branchName] git push origin [path]Copy the code