In SVN you can Check Out (to block others) can you do this in GIT? -
You can check out in SVN (prevent other files from working on the same file) Do you do it in GIT Can you? It seems that you have to set up a second system that tells people what file is being edited with GIT? GIT does not have any central store that you can ask to check if a file is " Lock "or not. Due to its distributed nature, a repository can be on 1,000 computers, and they are all the same. If you have all given permission to lock a file, and they are allowed to communicate to all other repositories, then all the files will be locked originally at all times.
Not so, you can not do this in GIT. Instead, rely on updating frequently and handling strange mergers.
You can read about it.
Comments
Post a Comment