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
### Setup ###
#### Windows ####
* Add to Windows environment variable PATH
* full additions (explained further on)
;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
* Git cmd folder
* Git bin folder
* repo script default path
* Start "Git Bash", Download repo script
curl https://github.com/esrlabs/git-repo/repo > ~/repo
curl https://github.com/esrlabs/git-repo/repo.cmd > ~/repo.cmd
* Download repo script
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 ###
......@@ -51,4 +80,5 @@ found on the referenced Android [git-repo](http://source.android.com/source/vers
* view diff, status, .. (in root folder)
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)
# increment this if the MAINTAINER_KEYS block is modified
KEYRING_VERSION = (1, 1)
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-----
Version: SKS 1.1.0
......@@ -97,7 +98,6 @@ t5sKGnfGreTJl8iyzqtQe60Wzxr5tg3W/QvJYaYZRFlZX5cKjXXZizPDHpOcQYwQWM36RLsu
CWWfbB6lN1jvyojS5ZPw
=UVAj
-----END PGP PUBLIC KEY BLOCK-----
"""
GIT = 'git' # our git command
......
......@@ -2,7 +2,7 @@
<module type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="Python" name="Python">
<configuration sdkName="Python 3.3.0 (C:/Python33/python.exe)" />
<configuration sdkName="" />
</facet>
</component>
<component name="NewModuleRootManager" inherit-compiler-output="false">
......@@ -18,7 +18,6 @@
</content>
<orderEntry type="jdk" jdkName="Python 3.3.0 (C:/Python33/python.exe)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Python 3.3.0 (C:/Python33/python.exe) interpreter library" level="application" />
</component>
</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