From a0ccf50ede976d2d6f53b9caa43a98287b2f784b Mon Sep 17 00:00:00 2001 From: Ali Husnain <59732833+alihusnain4190@users.noreply.github.com> Date: Fri, 2 May 2025 10:21:36 +0100 Subject: [PATCH 1/8] Create config.txt create config.txt file --- config.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 config.txt diff --git a/config.txt b/config.txt new file mode 100644 index 00000000..8f4c6a47 --- /dev/null +++ b/config.txt @@ -0,0 +1 @@ +this is a simple file From 3dc1b5c0a92be5396734a319fddcd6dcb217e97f Mon Sep 17 00:00:00 2001 From: Ali Husnain Date: Fri, 2 May 2025 10:24:23 +0100 Subject: [PATCH 2/8] add new line --- config.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.txt b/config.txt index 8f4c6a47..a683a819 100644 --- a/config.txt +++ b/config.txt @@ -1 +1,3 @@ this is a simple file + +I am adding sec line. \ No newline at end of file From c5a4f0b980ea7763112cb07d8bab9119d11b3a05 Mon Sep 17 00:00:00 2001 From: Ali Husnain <59732833+alihusnain4190@users.noreply.github.com> Date: Fri, 2 May 2025 10:27:58 +0100 Subject: [PATCH 3/8] Create feature.txt add feature --- feature/feature.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 feature/feature.txt diff --git a/feature/feature.txt b/feature/feature.txt new file mode 100644 index 00000000..16545ff5 --- /dev/null +++ b/feature/feature.txt @@ -0,0 +1 @@ +this is feature file From 4d127de9f8906b9927a30d97eabeb29548f3b379 Mon Sep 17 00:00:00 2001 From: Ali Husnain Date: Fri, 2 May 2025 10:28:28 +0100 Subject: [PATCH 4/8] add other --- config.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config.txt b/config.txt index a683a819..129d6669 100644 --- a/config.txt +++ b/config.txt @@ -1,3 +1,5 @@ this is a simple file -I am adding sec line. \ No newline at end of file +I am adding sec line. + +add an other file \ No newline at end of file From 9cd3f3704a33e921bbbc3a33f866a7c6185d1f8a Mon Sep 17 00:00:00 2001 From: Ali Husnain Date: Fri, 2 May 2025 11:11:02 +0100 Subject: [PATCH 5/8] feature4 --- feature4/feature4.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 feature4/feature4.txt diff --git a/feature4/feature4.txt b/feature4/feature4.txt new file mode 100644 index 00000000..e502813a --- /dev/null +++ b/feature4/feature4.txt @@ -0,0 +1 @@ +feature4 \ No newline at end of file From 55d37b353173ef5453d778c47f9464046f8af6db Mon Sep 17 00:00:00 2001 From: Ali Husnain Date: Wed, 11 Mar 2026 12:45:35 +0000 Subject: [PATCH 6/8] feat --- .gitignore | 1 - config.txt | 5 ----- feature/feature.txt | 1 - feature1/feature1.txt | 1 - feature2/feature2.txt | 1 - feature4/feature4.txt | 1 - 6 files changed, 10 deletions(-) delete mode 100644 .gitignore delete mode 100644 config.txt delete mode 100644 feature/feature.txt delete mode 100644 feature1/feature1.txt delete mode 100644 feature2/feature2.txt delete mode 100644 feature4/feature4.txt 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/config.txt b/config.txt deleted file mode 100644 index 129d6669..00000000 --- a/config.txt +++ /dev/null @@ -1,5 +0,0 @@ -this is a simple file - -I am adding sec line. - -add an other file \ No newline at end of file diff --git a/feature/feature.txt b/feature/feature.txt deleted file mode 100644 index 16545ff5..00000000 --- a/feature/feature.txt +++ /dev/null @@ -1 +0,0 @@ -this is feature 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 diff --git a/feature4/feature4.txt b/feature4/feature4.txt deleted file mode 100644 index e502813a..00000000 --- a/feature4/feature4.txt +++ /dev/null @@ -1 +0,0 @@ -feature4 \ No newline at end of file From 4d4c7aeae3fc09885d21b7115189fdc736124006 Mon Sep 17 00:00:00 2001 From: Ali Husnain Date: Wed, 11 Mar 2026 12:49:00 +0000 Subject: [PATCH 7/8] update readme --- README.md | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f7897335..f730ca3b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,24 @@ -# 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 \ No newline at end of file From 279aab52e47701697dabe77087003e43bb2bd6f0 Mon Sep 17 00:00:00 2001 From: Ali Husnain Date: Wed, 11 Mar 2026 12:53:13 +0000 Subject: [PATCH 8/8] add new branch --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f730ca3b..3b280eea 100644 --- a/README.md +++ b/README.md @@ -21,4 +21,9 @@ we use this one to push into repo git branch -a # to fetch all branch from browser to loca -git fetch \ No newline at end of file +git fetch + +# switch to other branch +git checkout + To verify use + git branch -a \ No newline at end of file