Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

31 changes: 29 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 <file_name>
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 <branch_name>
To verify use
git branch -a
1 change: 0 additions & 1 deletion feature1/feature1.txt

This file was deleted.

1 change: 0 additions & 1 deletion feature2/feature2.txt

This file was deleted.