Commit 6656ac1c authored by Matthias Putz's avatar Matthias Putz

made git_ssh executable + fixed repo + updated readme

parent 43e95f52
...@@ -20,6 +20,7 @@ The mainly used, platform dependet features are: symbolic links as well as the c ...@@ -20,6 +20,7 @@ The mainly used, platform dependet features are: symbolic links as well as the c
### Setup ### ### Setup ###
#### Windows ####
* Add to Windows environment variable PATH * Add to Windows environment variable PATH
* full additions (explained further on) * full additions (explained further on)
;C:\Python33C;\Program Files (x86)\Git\cmd;C:\Program Files (x86)\Git\bin;%USERPROFILE% ;C:\Python33C;\Program Files (x86)\Git\cmd;C:\Program Files (x86)\Git\bin;%USERPROFILE%
...@@ -27,9 +28,37 @@ The mainly used, platform dependet features are: symbolic links as well as the c ...@@ -27,9 +28,37 @@ The mainly used, platform dependet features are: symbolic links as well as the c
* Git cmd folder * Git cmd folder
* Git bin folder * Git bin folder
* repo script default path * repo script default path
* Start "Git Bash", Download repo script * Download repo script
curl https://github.com/esrlabs/git-repo/repo > ~/repo
curl https://github.com/esrlabs/git-repo/repo.cmd > ~/repo.cmd curl https://raw.github.com/esrlabs/git-repo/master/repo > %USERPROFILE%/repo
curl https://raw.github.com/esrlabs/git-repo/master/repo > %USERPROFILE%/repo.cmd
#### Linux ####
* Add to environment variable PATH
* repo bin folder (separator is ':')
~/bin
* Download repo script
curl https://raw.github.com/esrlabs/git-repo/master/repo > ~/bin/repo
* Make executable
chmod +x ~/bin/repo
* Optional: Since commonly on linux systems python will start python2, a fast way to switch is required. A recommended approach is with update-alternatives:
* setup alternative executables for python
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 10
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 20
* switching to python 3 / python2 (command provides interactive switching)
sudo update-alternatives --config python
### Usage ### ### Usage ###
...@@ -51,4 +80,5 @@ found on the referenced Android [git-repo](http://source.android.com/source/vers ...@@ -51,4 +80,5 @@ found on the referenced Android [git-repo](http://source.android.com/source/vers
* view diff, status, .. (in root folder) * view diff, status, .. (in root folder)
repo status repo status
repo diff
\ No newline at end of file repo diff
File mode changed from 100644 to 100755
...@@ -35,7 +35,8 @@ VERSION = (1, 19, 1) ...@@ -35,7 +35,8 @@ VERSION = (1, 19, 1)
# increment this if the MAINTAINER_KEYS block is modified # increment this if the MAINTAINER_KEYS block is modified
KEYRING_VERSION = (1, 1) KEYRING_VERSION = (1, 1)
MAINTAINER_KEYS = """ MAINTAINER_KEYS = """
Matthias Putz (E.S.R.Labs) <matthias.putz@esrlabs.com>
Matthias Putz (E.S.R.Labs) <matthias.putz@esrlabs.com>
-----BEGIN PGP PUBLIC KEY BLOCK----- -----BEGIN PGP PUBLIC KEY BLOCK-----
Version: SKS 1.1.0 Version: SKS 1.1.0
...@@ -97,7 +98,6 @@ t5sKGnfGreTJl8iyzqtQe60Wzxr5tg3W/QvJYaYZRFlZX5cKjXXZizPDHpOcQYwQWM36RLsu ...@@ -97,7 +98,6 @@ t5sKGnfGreTJl8iyzqtQe60Wzxr5tg3W/QvJYaYZRFlZX5cKjXXZizPDHpOcQYwQWM36RLsu
CWWfbB6lN1jvyojS5ZPw CWWfbB6lN1jvyojS5ZPw
=UVAj =UVAj
-----END PGP PUBLIC KEY BLOCK----- -----END PGP PUBLIC KEY BLOCK-----
""" """
GIT = 'git' # our git command GIT = 'git' # our git command
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<module type="JAVA_MODULE" version="4"> <module type="JAVA_MODULE" version="4">
<component name="FacetManager"> <component name="FacetManager">
<facet type="Python" name="Python"> <facet type="Python" name="Python">
<configuration sdkName="Python 3.3.0 (C:/Python33/python.exe)" /> <configuration sdkName="" />
</facet> </facet>
</component> </component>
<component name="NewModuleRootManager" inherit-compiler-output="false"> <component name="NewModuleRootManager" inherit-compiler-output="false">
...@@ -18,7 +18,6 @@ ...@@ -18,7 +18,6 @@
</content> </content>
<orderEntry type="jdk" jdkName="Python 3.3.0 (C:/Python33/python.exe)" jdkType="Python SDK" /> <orderEntry type="jdk" jdkName="Python 3.3.0 (C:/Python33/python.exe)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Python 3.3.0 (C:/Python33/python.exe) interpreter library" level="application" />
</component> </component>
</module> </module>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment