Can 2 Git clones push/pull to each other without having remote tracking branches representing the other? I know they're very useful most of the time, but I might occasionally want to pull/push between secondary repos (not my bare server), and I don't want to clutter things up. If I don't care about a remote tracking branch, can it be deleted or never created?
|
If you mean not having a local branch track changes on a remote branch: You do not have to have your branches track a remote branch. It is a convenience that has a few benefits that you won't have; such as Not setting up a tracking branch does not prevent you from using remotes. Remotes can still be used in all commands instead of typing the URL. To see what branches are tracked use I don't know a way to remove the tracking from a branch other than to delete it and recreate without tracking. If you mean the local copy of the remote branch (as seen by You can delete these with However, they do not add any real clutter or overhead to the repository. The remote tracking branch is, on disk, just a file with a commit hash in it. The commits are saved elsewhere and presumably, since you wanted to fetch them, they have been merged or rebased into one or more local branches. This information can be fetch using a URL instead of a remote. This does not create a record of what was fetched anywhere but the FETCH_HEAD file. Since this file is overridden with each fetch, the commit data will be lost if not merged or rebased into a local branch before another fetch is performed. The remote tracking branch is there to keep the fetched data from being garbage collected. |
||||
|
|
|
Remote tracking branches are not required. They are just a convenience to (a) give git push and pull a default behaviour and (b) to receive information about the local branch status in contrast to the remote one in the git status output. You don’t need either to work with Git.
Note that setting up a remote tracking branch does not clutter things at all. All it does is add three lines to the local repositories’ config file. It does not do anything else. All the additional information during |
|||
|
|
|
Yes, you can easily achieve that by simply not adding a remote. The usual way to push/pull between repos is to Instead of using |
|||
|
|