From 148060f6d03b5a7d3fde0ec46e17fc762590b9aa Mon Sep 17 00:00:00 2001 From: zeticous Date: Tue, 10 May 2016 17:00:29 +0800 Subject: [PATCH] Add clone command --- advay.txt | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 advay.txt diff --git a/advay.txt b/advay.txt new file mode 100644 index 00000000..d1cbd522 --- /dev/null +++ b/advay.txt @@ -0,0 +1,23 @@ +git init + Initialise new repository + +git add + Add the files into staging area + +git commit + Shift the files from the staging area to the repository. Change the version. + +git log + Check all commits + +git commit --oneline + Show all commits in 1 line + +git status + Check for all files in the staging area. + +git diff + Shows all the difference between staging area file and working directory. + +git clone (URL) + Copy all the files in the url to working directory \ No newline at end of file