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
| dar016900@ESC-IT-SARTAN ~ | |
| $ mkdir tester | |
| dar016900@ESC-IT-SARTAN ~ | |
| $ cd tester | |
| dar016900@ESC-IT-SARTAN ~/tester | |
| $ vi tests.txt | |
| dar016900@ESC-IT-SARTAN ~/tester | |
| $ ls | |
| tests.txt | |
| dar016900@ESC-IT-SARTAN ~/tester | |
| $ ls | |
| tests.txt | |
| dar016900@ESC-IT-SARTAN ~/tester | |
| $ git init | |
| Initialized empty Git repository in h:/tester/.git/ | |
| dar016900@ESC-IT-SARTAN ~/tester (master) | |
| $ ls | |
| tests.txt | |
| dar016900@ESC-IT-SARTAN ~/tester (master) | |
| $ git add tests.txt | |
| dar016900@ESC-IT-SARTAN ~/tester (master) | |
| $ git commit -m "First commit" | |
| [master (root-commit) 28f1848] First commit | |
| 1 file changed, 1 insertion(+) | |
| create mode 100644 tests.txt | |
| dar016900@ESC-IT-SARTAN ~/tester (master) | |
| $ ls | |
| tests.txt | |
| dar016900@ESC-IT-SARTAN ~/tester (master) | |
| $ cd .. | |
| dar016900@ESC-IT-SARTAN ~ | |
| $ ls | |
| ILoggedOnInLast30Days.txt _viminfo hello tester | |
| dar016900@ESC-IT-SARTAN ~ | |
| $ git clone tester tester_new | |
| Cloning into 'tester_new'... | |
| done. | |
| error: refs/remotes/origin/master does not point to a valid object! | |
| error: Trying to write ref refs/heads/master with nonexistent object 28f18484321 | |
| bd0310c20c37fd480e45b0fb74167 | |
| fatal: Cannot update the ref 'HEAD'. | |
| fatal: The remote end hung up unexpectedly |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment