https://stackoverflow.com/questions/18404272/running-ssh-agent-when-starting-git-bash-on-windows
I needed this to launch the ssh agent on my windows git bash sessions.
edit or create .profile and add:
env=~/.ssh/agent.env
| # One liner | |
| wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains yoursite.com --no-parent yoursite.com | |
| # Explained | |
| wget \ | |
| --recursive \ # Download the whole site. | |
| --page-requisites \ # Get all assets/elements (CSS/JS/images). | |
| --adjust-extension \ # Save files with .html on the end. | |
| --span-hosts \ # Include necessary assets from offsite as well. | |
| --convert-links \ # Update links to still work in the static version. |
https://stackoverflow.com/questions/18404272/running-ssh-agent-when-starting-git-bash-on-windows
I needed this to launch the ssh agent on my windows git bash sessions.
edit or create .profile and add:
env=~/.ssh/agent.env
Let's say you want to access the application shared preferences in /data/data/com.mypackage.
You could try to run adb shell and then run-as com.mypackage
( or adb shell run-as com.mypackge ls /data/data/com.mypackage/shared_prefs),
but on a production release app downloaded from an app store you're most likely to see:
run-as: Package 'com.mypackage' is not debuggable
I hereby claim:
To claim this, I am signing this object:
| {color:#8eb021}✔{color} | |
| {color:#d04437}✘{color} | |
| ⟳ |
http://flavio.castelli.name/2007/09/04/howto_use_git_with_svn/
http://stackoverflow.com/questions/16329776/how-to-keep-a-git-branch-in-sync-with-master
http://stackoverflow.com/questions/2695119/is-git-svn-rebase-required-before-git-svn-dcommit
http://stackoverflow.com/questions/2389361/undo-a-git-merge-that-hasnt-been-pushed-yet
# checkout svn trunk revision 123456
git svn clone -r123456:HEAD https://svn.example.com/svn/trunk/project| # checkout svn trunk revision 123456 | |
| git svn clone -r123456:HEAD https://svn.example.com/svn/trunk/project | |
| # create branch on which you do your modifications | |
| git checkout -b feature-branch | |
| # do your modifications, then commit locally, eventually "git add" new files | |
| git commit | |
| # sync with svn |
| at org.primefaces.json.JSONObject.populateMap(JSONObject.java:1164) | |
| at org.primefaces.json.JSONObject.<init>(JSONObject.java:276) | |
| at org.primefaces.json.JSONObject.wrap(JSONObject.java:1721) | |
| at org.primefaces.json.JSONObject.populateMap(JSONObject.java:1166) | |
| at org.primefaces.json.JSONObject.<init>(JSONObject.java:276) | |
| at org.primefaces.json.JSONObject.wrap(JSONObject.java:1721) | |
| at org.primefaces.json.JSONObject.populateMap(JSONObject.java:1166) | |
| at org.primefaces.json.JSONObject.<init>(JSONObject.java:276) | |
| at org.primefaces.json.JSONObject.wrap(JSONObject.java:1721) | |
| at org.primefaces.json.JSONObject.populateMap(JSONObject.java:1166) |
| Index: main/src/cgeo/geocaching/apps/AbstractLocusApp.java | |
| IDEA additional info: | |
| Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
| <+>UTF-8 | |
| =================================================================== | |
| --- main/src/cgeo/geocaching/apps/AbstractLocusApp.java (revision bdb08e4ebca8b7e6cc3c00d98fbb9b1702c8a378) | |
| +++ main/src/cgeo/geocaching/apps/AbstractLocusApp.java (revision ) | |
| @@ -2,10 +2,15 @@ | |
| import cgeo.geocaching.CgeoApplication; |