Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task completed by Tiya_Roy_101 #43

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
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
Binary file added Screenshots/Screenshot (110).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshots/Screenshot (111).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshots/Screenshot (112).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshots/Screenshot (113).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshots/Screenshot (114).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshots/Screenshot (116).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshots/Screenshot (117).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshots/Screenshot (118).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshots/Screenshot (119).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions TiyaRoy.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Tiya Roy
205122101
Empty file added commit1_Learner.txt
Empty file.
Empty file added commit1_Main.txt
Empty file.
Empty file added commit2_Learner.txt
Empty file.
12 changes: 12 additions & 0 deletions gitCommand.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
GIT COMMANDS AND THEIR USES

1. git add <filename> ---> it adds the file from working directory to staging index
2. git commit ---> it adds the files present in staging index to commit tree
3. git log ---> it tells the commit history
4. git branch <branchname> ---> it create a new branch with name <branchname>
5. git checkout <branchname> ---> it takes the head from current branch to the <branchname>
6. git reset ---> it changes undo local changes to the state of git repo
7. git clean ---> it deletes untracked files
8. git clone <completelink> ---> it clones repository present in the given link
9. git merge <branchname> ---> it merges the currently woring brach and the given branch in <branchname>
10. git push ---> it pushes all the changes in the github repository