Skip to content

Sauter Git Workflow : FAQs

Damien Buhl edited this page Aug 4, 2014 · 13 revisions

###Some FAQs:

I want to commit my changes, but every time I get the following error

I have committed my changes but no one else can get my changes

I want to push my committed changes to the server, but I get the following error

Is it possible to merge binary files?

Is it possible to lock individual branches on the server (e.g. the master-branch)?

SourceTreeApp doesn't allow me to clone, when I click on Details I get an empty window


  • I want to commit my changes, but every time I get the following error:

    Forgot To Stage

**-->** You have forgot to stage your changes before committing them
[back to top](./Sauter-Git-Workflow-:-faqs)
  • I have committed my changes but no one else can get my changes:

--> You have forgot to push your changes back to the server.
Note: Committing a file only checks it into (VSS language) your local repository. To make it public on the server, you need to push the branch with these changed files, too.

[back to top](./Sauter-Git-Workflow-:-faqs)
  • I want to push my committed changes to the server, but I get the following error:

    Forgot To Pull

**-->** There are some changes made by other users in your branch. You need to pull it first.
[back to top](./Sauter-Git-Workflow-:-faqs)
  • Is it possible to merge binary files?

--> No, there is no way to merge binaries.
Note: Access databases (mdb-files) are also treated as binaries!
MS-Word and -Excel-documents can be merged, but its difficult

[back to top](./Sauter-Git-Workflow-:-faqs)
  • Is it possible to lock individual branches on the server (e.g. the master-branch)?

--> No, Git(hub) has no possibility to lock individual branches on the server.
Git only allows you to set UACL on a whole repository, not on parts of it.
You can only lock some local branches (client side) using git hooks. In that case you will get an error like this if you try to commit changes to your local master branch:

![Commit Not Allowed](pictures/commit-not-allowed-using-hooks.jpg)  
**Disadvantage**: Project managers should not have such hooks installed, because they need to change the master branch. Alternatively they can omit these checks using a special command line option.
[back to top](./Sauter-Git-Workflow-:-faqs)
  • SourceTreeApp doesn't allow me to clone, when I click on Details I get an empty window

This is fun but it appears when the installer crashed in the middle or when the git support isn't enabled. To fix this click on Tools > Options > Git and click on install Embedded Git.

  • to be continued....

Clone this wiki locally