-
Notifications
You must be signed in to change notification settings - Fork 486
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: updated notes for using the got repo
- Loading branch information
Showing
3 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
#!/bin/sh | ||
# | ||
# Runing this script will prevent GIT to pick up the changes on the next | ||
# commit for the files that the IDE is using to store its configuration. | ||
# This will prevent the leaking of your local configuration (e.g. .cproject) | ||
# into the GIT repo, causing unnecessary merge conflicts later. | ||
# | ||
|
||
cd `dirname $0`/.. || { echo --- error changing to the inet root directory ---; exit 1;} | ||
|
||
git update-index --assume-unchanged .cproject .nedfolders .oppbuildspec .project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
#!/bin/sh | ||
# | ||
# Execute this script if you want to make changes to the IDE configuration files | ||
# (e.g. .cproject) and you would like to see these changes picked up by GIT | ||
# on the next commit. (if you have turned off the checking previously) | ||
# | ||
|
||
cd `dirname $0`/.. || { echo --- error changing to the inet root directory ---; exit 1;} | ||
|
||
git update-index --no-assume-unchanged .cproject .nedfolders .oppbuildspec .project |