Search Results

5
votes
2answers
207 views

Can I map local branches to remote branches with different prefixes in git?

We're working with a semi-centralized git repository here where I work. Each developer has their own subtree in the central git repository, so it looks something like this: master alice/b …
0
votes

Want to download a Git repository, what do I need (windows machine)?

To change working directory in GitMSYS's Git Bash you can just use cd cd /path/do/directory Note that: Directory separators use the forward-slash (/ …
2
votes

Locking binary files using git version control system

We've just recently started using Git (used Subversion previously) and I have found a change to workflow that might help with your problem, without the need for locks. It takes advantage of how git …
3
votes

How do I add an empty directory to a git repository

When you add a .gitignore file, if you are going to put any amount of content in it (that you want git to ignore) you might want to add a single line with just an asterisk (*) to make …
6
votes

Locking binary files using git version control system

In response to Mario's additional concern with changes happening in multiple places on the binaries. So the scenario is Alice and Bob are both making changes to the same binary resource at the same …