Created
August 30, 2012 00:25
-
-
Save kohsuke/3520916 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| [~/ws/jenkins/git-userContent-plugin@griffon] (master) | |
| % git clone ssh://localhost:22222/userContent.git ws | |
| Cloning into 'ws'... | |
| remote: Counting objects: 9, done | |
| remote: Finding sources: 100% (9/9) | |
| remote: Total 9 (delta 0), reused 9 (delta 0) | |
| Receiving objects: 100% (9/9), 610 bytes, done. | |
| [~/ws/jenkins/git-userContent-plugin@griffon] (master) | |
| % cd ws | |
| [~/ws/jenkins/git-userContent-plugin/ws@griffon] (master) | |
| % ls -la | |
| total 16 | |
| drwxr-xr-x 3 kohsuke kohsuke 4096 Aug 29 17:24 . | |
| drwxrwxr-x 8 kohsuke kohsuke 4096 Aug 29 17:24 .. | |
| -rw-rw-r-- 1 kohsuke kohsuke 6 Aug 29 17:24 a | |
| drwxrwxr-x 8 kohsuke kohsuke 4096 Aug 29 17:24 .git | |
| [~/ws/jenkins/git-userContent-plugin/ws@griffon] (master) | |
| % touch b | |
| [~/ws/jenkins/git-userContent-plugin/ws@griffon] (master) | |
| % git add b | |
| [~/ws/jenkins/git-userContent-plugin/ws@griffon] (master) | |
| % git commit -am "added b" | |
| [master 941e34e] added b | |
| 0 files changed | |
| create mode 100644 b | |
| [~/ws/jenkins/git-userContent-plugin/ws@griffon] (master) | |
| % ls -la work/userContent | |
| ls: cannot access work/userContent: No such file or directory | |
| [~/ws/jenkins/git-userContent-plugin/ws@griffon] (master) | |
| % ls -la ../work/userContent | |
| total 20 | |
| drwxrwxr-x 3 kohsuke kohsuke 4096 Aug 27 10:57 . | |
| drwxrwxr-x 8 kohsuke kohsuke 4096 Aug 29 17:21 .. | |
| -rw-rw-r-- 1 kohsuke kohsuke 6 Aug 27 10:57 a | |
| drwxrwxr-x 7 kohsuke kohsuke 4096 Aug 27 10:57 .git | |
| -rw-rw-r-- 1 kohsuke kohsuke 83 Aug 27 10:42 readme.txt | |
| [~/ws/jenkins/git-userContent-plugin/ws@griffon] (master) | |
| % git push origin master | |
| Counting objects: 4, done. | |
| Delta compression using up to 8 threads. | |
| Compressing objects: 100% (2/2), done. | |
| Writing objects: 100% (3/3), 257 bytes, done. | |
| Total 3 (delta 0), reused 1 (delta 0) | |
| To ssh://localhost:22222/userContent.git | |
| 76b6eba..941e34e master -> master | |
| [~/ws/jenkins/git-userContent-plugin/ws@griffon] (master) | |
| % ls -la ../work/userContent | |
| total 20 | |
| drwxrwxr-x 3 kohsuke kohsuke 4096 Aug 29 17:24 . | |
| drwxrwxr-x 8 kohsuke kohsuke 4096 Aug 29 17:21 .. | |
| -rw-rw-r-- 1 kohsuke kohsuke 6 Aug 27 10:57 a | |
| -rw-rw-r-- 1 kohsuke kohsuke 0 Aug 29 17:24 b | |
| drwxrwxr-x 7 kohsuke kohsuke 4096 Aug 29 17:24 .git | |
| -rw-rw-r-- 1 kohsuke kohsuke 83 Aug 27 10:42 readme.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment