diff --git a/.gitignore b/.gitignore deleted file mode 100644 index bf0824e5..00000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.log \ No newline at end of file diff --git a/README.md b/README.md index f7897335..3b280eea 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,29 @@ -# widgit -Starting Point for Using Git Branches with Your Team demos +configure user name + +git config --global user.name "user_name" +git config --global user.email "user_email" + + +# Check status +git status + +# git add +we use this to add file which we want to push into our repo + +# git commit -m "message_here" +this is use to add message with commit" + +# git push +we use this one to push into repo + + +# to checkout we can use below one +git branch -a + +# to fetch all branch from browser to loca +git fetch + +# switch to other branch +git checkout + To verify use + git branch -a \ No newline at end of file diff --git a/feature1/feature1.txt b/feature1/feature1.txt deleted file mode 100644 index f6e7de1e..00000000 --- a/feature1/feature1.txt +++ /dev/null @@ -1 +0,0 @@ -feature1 implementation \ No newline at end of file diff --git a/feature2/feature2.txt b/feature2/feature2.txt deleted file mode 100644 index 5a562bd4..00000000 --- a/feature2/feature2.txt +++ /dev/null @@ -1 +0,0 @@ -feature2 implementation \ No newline at end of file