Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 24

91893@DESKTOP-12II41F MINGW64 ~/myproject

$ git init
Initialized empty Git repository in C:/Users/91893/myproject/.git/

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ ls

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ ls

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ ls
index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ ls
index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git status
On branch master

No commits yet

Untracked files:
(use "git add <file>..." to include in what will be committed)
index.html

nothing added to commit but untracked files present (use "git add" to track)

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git add index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git status
On branch master

No commits yet

Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git add --all

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git status
On branch master

No commits yet

Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: Age_calculate.html
new file: Calci.html
new file: index.html
91893@DESKTOP-12II41F MINGW64 ~/myproject (master)
$ git add -A

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git status
On branch master

No commits yet

Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: Age_calculate.html
new file: Calci.html
new file: index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git commit -m "More styling to do"
[master (root-commit) 07205eb] More styling to do
3 files changed, 337 insertions(+)
create mode 100644 Age_calculate.html
create mode 100644 Calci.html
create mode 100644 index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git status --short
M index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git status --short
M index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git commit -a -m "Updated index.html with a new line"
[master 6787a9c] Updated index.html with a new line
1 file changed, 2 insertions(+), 2 deletions(-)

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git log
commit 6787a9caa9bca5c06903e2ae8a1b377b1613f4d4 (HEAD -> master)
Author: NILESH RANJAN <nira21cs@cmrit.ac.in>
Date: Fri Dec 22 17:39:54 2023 +0530

Updated index.html with a new line

commit 07205ebcc59a993b6827416255f19ceb59f463da
Author: NILESH RANJAN <nira21cs@cmrit.ac.in>
Date: Fri Dec 22 17:32:57 2023 +0530

More styling to do

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git command -help
git: 'command' is not a git command. See 'git --help'.

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git help --all
See 'git help <command>' to read about a specific subcommand
See 'git help <command>' to read about a specific subcommand

Main Porcelain Commands


add Add file contents to the index
am Apply a series of patches from a mailbox
archive Create an archive of files from a named tree
bisect Use binary search to find the commit that introduced a
bug
branch List, create, or delete branches
bundle Move objects and refs by archive
checkout Switch branches or restore working tree files
cherry-pick Apply the changes introduced by some existing commits
citool Graphical alternative to git-commit
clean Remove untracked files from the working tree
clone Clone a repository into a new directory
commit Record changes to the repository
describe Give an object a human readable name based on an
available ref
diff Show changes between commits, commit and working tree,
etc
fetch Download objects and refs from another repository
format-patch Prepare patches for e-mail submission
gc Cleanup unnecessary files and optimize the local
repository
gitk The Git repository browser
grep Print lines matching a pattern
gui A portable graphical interface to Git
init Create an empty Git repository or reinitialize an
existing one
log Show commit logs
maintenance Run tasks to optimize Git repository data
merge Join two or more development histories together
mv Move or rename a file, a directory, or a symlink
notes Add or inspect object notes
pull Fetch from and integrate with another repository or a
local branch
...skipping...
See 'git help <command>' to read about a specific subcommand

Main Porcelain Commands


add Add file contents to the index
am Apply a series of patches from a mailbox
archive Create an archive of files from a named tree
bisect Use binary search to find the commit that introduced a
bug
branch List, create, or delete branches
bundle Move objects and refs by archive
checkout Switch branches or restore working tree files
cherry-pick Apply the changes introduced by some existing commits
citool Graphical alternative to git-commit
clean Remove untracked files from the working tree
clone Clone a repository into a new directory
commit Record changes to the repository
describe Give an object a human readable name based on an
available ref
diff Show changes between commits, commit and working tree,
etc
fetch Download objects and refs from another repository
format-patch Prepare patches for e-mail submission
gc Cleanup unnecessary files and optimize the local
repository
gitk The Git repository browser
grep Print lines matching a pattern
gui A portable graphical interface to Git
init Create an empty Git repository or reinitialize an
existing one
log Show commit logs
maintenance Run tasks to optimize Git repository data
merge Join two or more development histories together
mv Move or rename a file, a directory, or a symlink
notes Add or inspect object notes
pull Fetch from and integrate with another repository or a
local branch
push Update remote refs along with associated objects
range-diff Compare two commit ranges (e.g. two versions of a
branch)
rebase Reapply commits on top of another base tip
reset Reset current HEAD to the specified state
restore Restore working tree files
revert Revert some existing commits
rm Remove files from the working tree and from the index
scalar A tool for managing large Git repositories
shortlog Summarize 'git log' output
show Show various types of objects
sparse-checkout Reduce your working tree to a subset of tracked files
stash Stash the changes in a dirty working directory away
status Show the working tree status
submodule Initialize, update or inspect submodules
switch Switch branches
tag Create, list, delete or verify a tag object signed with
GPG
worktree Manage multiple working trees

Ancillary Commands / Manipulators


config Get and set repository or global options
fast-export Git data exporter
fast-import Backend for fast Git data importers
filter-branch Rewrite branches
mergetool Run merge conflict resolution tools to resolve merge
conflicts
pack-refs Pack heads and tags for efficient repository access
prune Prune all unreachable objects from the object database
reflog Manage reflog information
remote Manage set of tracked repositories
repack Pack unpacked objects in a repository
replace Create, list, delete refs to replace objects

Ancillary Commands / Interrogators


annotate Annotate file lines with commit information
blame Show what revision and author last modified each line of
a file
bugreport Collect information for user to file a bug report
count-objects Count unpacked number of objects and their disk
consumption
diagnose Generate a zip archive of diagnostic information
difftool Show changes using common diff tools
fsck Verifies the connectivity and validity of the objects in
the database
gitweb Git web interface (web frontend to Git repositories)
help Display help information about Git
instaweb Instantly browse your working repository in gitweb
merge-tree Perform merge without touching index or working tree
rerere Reuse recorded resolution of conflicted merges
show-branch Show branches and their commits
verify-commit Check the GPG signature of commits
verify-tag Check the GPG signature of tags
version Display version information about Git
whatchanged Show logs with differences each commit introduces

Interacting with Others


archimport Import a GNU Arch repository into Git
cvsexportcommit Export a single commit to a CVS checkout
cvsimport Salvage your data out of another SCM people love to hate
cvsserver A CVS server emulator for Git
imap-send Send a collection of patches from stdin to an IMAP
folder
p4 Import from and submit to Perforce repositories
quiltimport Applies a quilt patchset onto the current branch
request-pull Generates a summary of pending changes
send-email Send a collection of patches as emails
svn Bidirectional operation between a Subversion repository
and Git

Low-level Commands / Manipulators


apply Apply a patch to files and/or to the index
checkout-index Copy files from the index to the working tree
commit-graph Write and verify Git commit-graph files
commit-tree Create a new commit object
hash-object Compute object ID and optionally create an object from a
file
index-pack Build pack index file for an existing packed archive
merge-file Run a three-way file merge
merge-index Run a merge for files needing merging
mktag Creates a tag object with extra validation
mktree Build a tree-object from ls-tree formatted text
multi-pack-index Write and verify multi-pack-indexes
pack-objects Create a packed archive of objects
prune-packed Remove extra objects that are already in pack files
read-tree Reads tree information into the index
symbolic-ref Read, modify and delete symbolic refs
unpack-objects Unpack objects from a packed archive
update-index Register file contents in the working tree to the index
update-ref Update the object name stored in a ref safely
write-tree Create a tree object from the current index

Low-level Commands / Interrogators


cat-file Provide contents or details of repository objects
cherry Find commits yet to be applied to upstream
diff-files Compares files in the working tree and the index
diff-index Compare a tree to the working tree or index
diff-tree Compares the content and mode of blobs found via two
tree objects
for-each-ref Output information on each ref
for-each-repo Run a Git command on a list of repositories
get-tar-commit-id Extract commit ID from an archive created using git-
archive
ls-files Show information about files in the index and the
working tree
ls-remote List references in a remote repository
ls-tree List the contents of a tree object
merge-base Find as good common ancestors as possible for a merge
name-rev Find symbolic names for given revs
pack-redundant Find redundant pack files
rev-list Lists commit objects in reverse chronological order
rev-parse Pick out and massage parameters
show-index Show packed archive index
show-ref List references in a local repository
unpack-file Creates a temporary file with a blob's contents
var Show a Git logical variable
verify-pack Validate packed Git archive files

Low-level Commands / Syncing Repositories


daemon A really simple server for Git repositories
fetch-pack Receive missing objects from another repository
http-backend Server side implementation of Git over HTTP
send-pack Push objects over Git protocol to another repository
update-server-info Update auxiliary info file to help dumb servers

Low-level Commands / Internal Helpers


check-attr Display gitattributes information
check-ignore Debug gitignore / exclude files
check-mailmap Show canonical names and email addresses of contacts
check-ref-format Ensures that a reference name is well formed
column Display data in columns
credential Retrieve and store user credentials
credential-cache Helper to temporarily store passwords in memory
credential-store Helper to store credentials on disk
fmt-merge-msg Produce a merge commit message
hook Run git hooks
interpret-trailers Add or parse structured information in commit messages
mailinfo Extracts patch and authorship from a single e-mail
message
mailsplit Simple UNIX mbox splitter program
merge-one-file The standard helper program to use with git-merge-index
patch-id Compute unique ID for a patch
sh-i18n Git's i18n setup code for shell scripts
sh-setup Common Git shell script setup code
stripspace Remove unnecessary whitespace

User-facing repository, command and file interfaces


attributes Defining attributes per path
cli Git command-line interface and conventions
hooks Hooks used by Git
ignore Specifies intentionally untracked files to ignore
mailmap Map author/committer names and/or E-Mail addresses
modules Defining submodule properties
repository-layout Git Repository Layout
revisions Specifying revisions and ranges for Git

Developer-facing file formats, protocols and other interfaces


format-bundle The bundle file format
format-chunk Chunk-based file formats
format-commit-graph Git commit-graph format
format-index Git index format
format-pack Git pack format
format-signature Git cryptographic signature formats
protocol-capabilities Protocol v0 and v1 capabilities
protocol-common Things common to various protocols
protocol-http Git HTTP-based protocols
protocol-pack How packs are transferred over-the-wire
protocol-v2 Git Wire Protocol, Version 2

External commands
askpass
askyesno
credential-helper-selector
credential-manager
flow
lfs
update-git-for-windows
See 'git help <command>' to read about a specific subcommand

Main Porcelain Commands


add Add file contents to the index
am Apply a series of patches from a mailbox
archive Create an archive of files from a named tree
bisect Use binary search to find the commit that introduced a
bug
branch List, create, or delete branches
bundle Move objects and refs by archive
checkout Switch branches or restore working tree files
cherry-pick Apply the changes introduced by some existing commits
citool Graphical alternative to git-commit
clean Remove untracked files from the working tree
clone Clone a repository into a new directory
commit Record changes to the repository
describe Give an object a human readable name based on an
available ref
diff Show changes between commits, commit and working tree,
etc
fetch Download objects and refs from another repository
format-patch Prepare patches for e-mail submission
gc Cleanup unnecessary files and optimize the local
repository
gitk The Git repository browser
grep Print lines matching a pattern
gui A portable graphical interface to Git
init Create an empty Git repository or reinitialize an
existing one
log Show commit logs
maintenance Run tasks to optimize Git repository data
merge Join two or more development histories together
mv Move or rename a file, a directory, or a symlink
notes Add or inspect object notes
pull Fetch from and integrate with another repository or a
local branch
push Update remote refs along with associated objects
range-diff Compare two commit ranges (e.g. two versions of a
branch)
rebase Reapply commits on top of another base tip
reset Reset current HEAD to the specified state
restore Restore working tree files
revert Revert some existing commits
rm Remove files from the working tree and from the index
scalar A tool for managing large Git repositories
shortlog Summarize 'git log' output
show Show various types of objects
sparse-checkout Reduce your working tree to a subset of tracked files
stash Stash the changes in a dirty working directory away
status Show the working tree status
submodule Initialize, update or inspect submodules
switch Switch branches
tag Create, list, delete or verify a tag object signed with
GPG
worktree Manage multiple working trees

Ancillary Commands / Manipulators


config Get and set repository or global options
fast-export Git data exporter
fast-import Backend for fast Git data importers
filter-branch Rewrite branches
mergetool Run merge conflict resolution tools to resolve merge
conflicts
pack-refs Pack heads and tags for efficient repository access
prune Prune all unreachable objects from the object database
reflog Manage reflog information
remote Manage set of tracked repositories
repack Pack unpacked objects in a repository
replace Create, list, delete refs to replace objects

Ancillary Commands / Interrogators


annotate Annotate file lines with commit information
blame Show what revision and author last modified each line of
a file
bugreport Collect information for user to file a bug report
count-objects Count unpacked number of objects and their disk
consumption
diagnose Generate a zip archive of diagnostic information
difftool Show changes using common diff tools
fsck Verifies the connectivity and validity of the objects in
the database
gitweb Git web interface (web frontend to Git repositories)
help Display help information about Git
instaweb Instantly browse your working repository in gitweb
merge-tree Perform merge without touching index or working tree
rerere Reuse recorded resolution of conflicted merges
show-branch Show branches and their commits
verify-commit Check the GPG signature of commits
verify-tag Check the GPG signature of tags
version Display version information about Git
whatchanged Show logs with differences each commit introduces

Interacting with Others


archimport Import a GNU Arch repository into Git
cvsexportcommit Export a single commit to a CVS checkout
cvsimport Salvage your data out of another SCM people love to hate
cvsserver A CVS server emulator for Git
imap-send Send a collection of patches from stdin to an IMAP
folder
p4 Import from and submit to Perforce repositories
quiltimport Applies a quilt patchset onto the current branch
request-pull Generates a summary of pending changes
send-email Send a collection of patches as emails
svn Bidirectional operation between a Subversion repository
and Git

Low-level Commands / Manipulators


apply Apply a patch to files and/or to the index
checkout-index Copy files from the index to the working tree
commit-graph Write and verify Git commit-graph files
commit-tree Create a new commit object
See 'git help <command>' to read about a specific subcommand

See 'git help <command>' to read about a specific subcommand

Main Porcelain Commands


add Add file contents to the index
am Apply a series of patches from a mailbox
archive Create an archive of files from a named tree
bisect Use binary search to find the commit that introduced a
bug
branch List, create, or delete branches
bundle Move objects and refs by archive
checkout Switch branches or restore working tree files
cherry-pick Apply the changes introduced by some existing commits
citool Graphical alternative to git-commit
clean Remove untracked files from the working tree
clone Clone a repository into a new directory
commit Record changes to the repository
describe Give an object a human readable name based on an
available ref
diff Show changes between commits, commit and working tree,
etc
fetch Download objects and refs from another repository
format-patch Prepare patches for e-mail submission
gc Cleanup unnecessary files and optimize the local
repository
gitk The Git repository browser
grep Print lines matching a pattern
gui A portable graphical interface to Git
init Create an empty Git repository or reinitialize an
existing one
log Show commit logs
maintenance Run tasks to optimize Git repository data
merge Join two or more development histories together
mv Move or rename a file, a directory, or a symlink
notes Add or inspect object notes
pull Fetch from and integrate with another repository or a
local branch
push Update remote refs along with associated objects
range-diff Compare two commit ranges (e.g. two versions of a
branch)
rebase Reapply commits on top of another base tip
reset Reset current HEAD to the specified state
restore Restore working tree files
revert Revert some existing commits
rm Remove files from the working tree and from the index
scalar A tool for managing large Git repositories
shortlog Summarize 'git log' output
show Show various types of objects
sparse-checkout Reduce your working tree to a subset of tracked files
stash Stash the changes in a dirty working directory away
status Show the working tree status
submodule Initialize, update or inspect submodules
switch Switch branches
tag Create, list, delete or verify a tag object signed with
GPG
worktree Manage multiple working trees

Ancillary Commands / Manipulators


config Get and set repository or global options
fast-export Git data exporter
fast-import Backend for fast Git data importers
filter-branch Rewrite branches
mergetool Run merge conflict resolution tools to resolve merge
conflicts
pack-refs Pack heads and tags for efficient repository access
prune Prune all unreachable objects from the object database
reflog Manage reflog information
remote Manage set of tracked repositories
repack Pack unpacked objects in a repository
replace Create, list, delete refs to replace objects

Ancillary Commands / Interrogators


annotate Annotate file lines with commit information
blame Show what revision and author last modified each line of
a file
bugreport Collect information for user to file a bug report
count-objects Count unpacked number of objects and their disk
consumption
diagnose Generate a zip archive of diagnostic information
difftool Show changes using common diff tools
fsck Verifies the connectivity and validity of the objects in
the database
gitweb Git web interface (web frontend to Git repositories)
help Display help information about Git
instaweb Instantly browse your working repository in gitweb
merge-tree Perform merge without touching index or working tree
rerere Reuse recorded resolution of conflicted merges
show-branch Show branches and their commits
verify-commit Check the GPG signature of commits
verify-tag Check the GPG signature of tags
version Display version information about Git
whatchanged Show logs with differences each commit introduces

Interacting with Others


archimport Import a GNU Arch repository into Git
cvsexportcommit Export a single commit to a CVS checkout
cvsimport Salvage your data out of another SCM people love to hate
cvsserver A CVS server emulator for Git
imap-send Send a collection of patches from stdin to an IMAP
folder
p4 Import from and submit to Perforce repositories
quiltimport Applies a quilt patchset onto the current branch
request-pull Generates a summary of pending changes
send-email Send a collection of patches as emails
svn Bidirectional operation between a Subversion repository
and Git

Low-level Commands / Manipulators


apply Apply a patch to files and/or to the index
checkout-index Copy files from the index to the working tree
commit-graph Write and verify Git commit-graph files
commit-tree Create a new commit object
hash-object Compute object ID and optionally create an object from a
file
index-pack Build pack index file for an existing packed archive
merge-file Run a three-way file merge
merge-index Run a merge for files needing merging
mktag Creates a tag object with extra validation
mktree Build a tree-object from ls-tree formatted text
multi-pack-index Write and verify multi-pack-indexes
pack-objects Create a packed archive of objects
prune-packed Remove extra objects that are already in pack files
read-tree Reads tree information into the index
symbolic-ref Read, modify and delete symbolic refs
unpack-objects Unpack objects from a packed archive
update-index Register file contents in the working tree to the index
update-ref Update the object name stored in a ref safely
write-tree Create a tree object from the current index

Low-level Commands / Interrogators


cat-file Provide contents or details of repository objects
cherry Find commits yet to be applied to upstream
diff-files Compares files in the working tree and the index
diff-index Compare a tree to the working tree or index
diff-tree Compares the content and mode of blobs found via two
tree objects
for-each-ref Output information on each ref
for-each-repo Run a Git command on a list of repositories
get-tar-commit-id Extract commit ID from an archive created using git-
archive
ls-files Show information about files in the index and the
working tree
ls-remote List references in a remote repository
ls-tree List the contents of a tree object
merge-base Find as good common ancestors as possible for a merge
name-rev Find symbolic names for given revs
pack-redundant Find redundant pack files
rev-list Lists commit objects in reverse chronological order
rev-parse Pick out and massage parameters
show-index Show packed archive index
show-ref List references in a local repository
unpack-file Creates a temporary file with a blob's contents
var Show a Git logical variable
verify-pack Validate packed Git archive files

Low-level Commands / Syncing Repositories


daemon A really simple server for Git repositories
fetch-pack Receive missing objects from another repository
http-backend Server side implementation of Git over HTTP
send-pack Push objects over Git protocol to another repository
update-server-info Update auxiliary info file to help dumb servers

Low-level Commands / Internal Helpers


check-attr Display gitattributes information
check-ignore Debug gitignore / exclude files
check-mailmap Show canonical names and email addresses of contacts
check-ref-format Ensures that a reference name is well formed
column Display data in columns
credential Retrieve and store user credentials
credential-cache Helper to temporarily store passwords in memory
credential-store Helper to store credentials on disk
fmt-merge-msg Produce a merge commit message
hook Run git hooks
interpret-trailers Add or parse structured information in commit messages
mailinfo Extracts patch and authorship from a single e-mail
message
mailsplit Simple UNIX mbox splitter program
merge-one-file The standard helper program to use with git-merge-index
patch-id Compute unique ID for a patch
sh-i18n Git's i18n setup code for shell scripts
sh-setup Common Git shell script setup code
stripspace Remove unnecessary whitespace

User-facing repository, command and file interfaces


attributes Defining attributes per path
cli Git command-line interface and conventions
hooks Hooks used by Git
ignore Specifies intentionally untracked files to ignore
mailmap Map author/committer names and/or E-Mail addresses
modules Defining submodule properties
repository-layout Git Repository Layout
revisions Specifying revisions and ranges for Git

Developer-facing file formats, protocols and other interfaces


format-bundle The bundle file format
format-chunk Chunk-based file formats
format-commit-graph Git commit-graph format
format-index Git index format
format-pack Git pack format
format-signature Git cryptographic signature formats
protocol-capabilities Protocol v0 and v1 capabilities
protocol-common Things common to various protocols
protocol-http Git HTTP-based protocols
protocol-pack How packs are transferred over-the-wire
protocol-v2 Git Wire Protocol, Version 2

External commands
askpass
askyesno
credential-helper-selector
credential-manager
flow
lfs
update-git-for-windows

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git branch food-images

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git branch
food-images
* master

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git checkout food-images
Switched to branch 'food-images'

91893@DESKTOP-12II41F MINGW64 ~/myproject (food-images)


$ git status
On branch food-images
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: index.html

Untracked files:
(use "git add <file>..." to include in what will be committed)
exit

no changes added to commit (use "git add" and/or "git commit -a")

91893@DESKTOP-12II41F MINGW64 ~/myproject (food-images)


$ git add --all
warning: in the working copy of 'exit', LF will be replaced by CRLF the next time
Git touches it

91893@DESKTOP-12II41F MINGW64 ~/myproject (food-images)


$ git status
On branch food-images
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
new file: exit
modified: index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (food-images)


$ git status
On branch food-images
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
new file: exit
modified: index.html

Changes not staged for commit:


(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: index.html

Untracked files:
(use "git add <file>..." to include in what will be committed)
abc.avif

91893@DESKTOP-12II41F MINGW64 ~/myproject (food-images)


$ git add --all

91893@DESKTOP-12II41F MINGW64 ~/myproject (food-images)


$ git status
On branch food-images
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
new file: abc.avif
new file: exit
modified: index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (food-images)


$ git commit -m "Added image"
[food-images b600bae] Added image
3 files changed, 195 insertions(+), 1 deletion(-)
create mode 100644 abc.avif
create mode 100644 exit

91893@DESKTOP-12II41F MINGW64 ~/myproject (food-images)


$ ls
Age_calculate.html Calci.html abc.avif exit index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (food-images)


$ git checkout master
Switched to branch 'master'

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ ls
Age_calculate.html Calci.html index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git checkout -b emergency-fix
Switched to a new branch 'emergency-fix'

91893@DESKTOP-12II41F MINGW64 ~/myproject (emergency-fix)


$ git status
On branch emergency-fix
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: index.html

no changes added to commit (use "git add" and/or "git commit -a")

91893@DESKTOP-12II41F MINGW64 ~/myproject (emergency-fix)


$ git add index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (emergency-fix)


$ git commit -m "Updated index.html with emergency-fix"
[emergency-fix dd57482] Updated index.html with emergency-fix
1 file changed, 1 insertion(+), 1 deletion(-)

91893@DESKTOP-12II41F MINGW64 ~/myproject (emergency-fix)


$ git checkout master
Switched to branch 'master'

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git merge emergency-fix
Updating 6787a9c..dd57482
Fast-forward
index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git branch -d emergency-fix
Deleted branch emergency-fix (was dd57482).

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git checkout food-images
Switched to branch 'food-images'
91893@DESKTOP-12II41F MINGW64 ~/myproject (food-images)
$ git add --all

91893@DESKTOP-12II41F MINGW64 ~/myproject (food-images)


$ git commit -m "added new food image"
[food-images 126cfb1] added new food image
1 file changed, 1 insertion(+), 1 deletion(-)

91893@DESKTOP-12II41F MINGW64 ~/myproject (food-images)


$ git checkout master
Switched to branch 'master'

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git merge food-images
Auto-merging index.html
CONFLICT (content): Merge conflict in index.html
Automatic merge failed; fix conflicts and then commit the result.

91893@DESKTOP-12II41F MINGW64 ~/myproject (master|MERGING)


$ git status
On branch master
You have unmerged paths.
(fix conflicts and run "git commit")
(use "git merge --abort" to abort the merge)

Changes to be committed:
new file: abc.avif
new file: exit

Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (master|MERGING)


$ git add index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (master|MERGING)


$ git status
On branch master
All conflicts fixed but you are still merging.
(use "git commit" to conclude merge)

Changes to be committed:
new file: abc.avif
new file: exit
modified: index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (master|MERGING)


$ git commit -m "merged after conflict resolution"
[master ada7e41] merged after conflict resolution

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git branch -d food-images
Deleted branch food-images (was 126cfb1).

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git remote add origin https://github.com/NILESH-2003/Age_calculate.git
91893@DESKTOP-12II41F MINGW64 ~/myproject (master)
$ git push --set-upstream origin master
Enumerating objects: 22, done.
Counting objects: 100% (22/22), done.
Delta compression using up to 4 threads
Compressing objects: 100% (22/22), done.
Writing objects: 100% (22/22), 119.45 KiB | 2.49 MiB/s, done.
Total 22 (delta 11), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (11/11), done.
To https://github.com/NILESH-2003/Age_calculate.git
* [new branch] master -> master
branch 'master' set up to track 'origin/master'.

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git fetch origin
remote: Enumerating objects: 7, done.
remote: Counting objects: 100% (7/7), done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 6 (delta 3), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (6/6), 1.39 KiB | 3.00 KiB/s, done.
From https://github.com/NILESH-2003/Age_calculate
ada7e41..d422ee1 master -> origin/master

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git status
On branch master
Your branch is behind 'origin/master' by 2 commits, and can be fast-forwarded.
(use "git pull" to update your local branch)

nothing to commit, working tree clean

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git log origin/master
commit d422ee1e8106173d21461a0a609fe6d663b510e0 (origin/master)
Author: NILESH-2003 <116618534+NILESH-2003@users.noreply.github.com>
Date: Fri Dec 22 18:43:40 2023 +0530

README.md

commit ba18dbeb93f54594af76baf8e1e1de157b107053
Author: NILESH-2003 <116618534+NILESH-2003@users.noreply.github.com>
Date: Fri Dec 22 18:42:32 2023 +0530

Create README.md

commit ada7e41968973a91ca8bf66a47db80ef325fd036 (HEAD -> master)


Merge: dd57482 126cfb1
Author: NILESH RANJAN <nira21cs@cmrit.ac.in>
Date: Fri Dec 22 18:21:03 2023 +0530

merged after conflict resolution

commit 126cfb181a1ef58b403dad959ae754acad3af76c
Author: NILESH RANJAN <nira21cs@cmrit.ac.in>
Date: Fri Dec 22 18:15:33 2023 +0530

added new food image


commit dd57482ce7b01f1703e3a2168ee58dba9b1625c7
Author: NILESH RANJAN <nira21cs@cmrit.ac.in>
Date: Fri Dec 22 18:08:42 2023 +0530

Updated index.html with emergency-fix

commit b600bae58ef9f5a5ea3acadab30883cc1325c6f5

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git diff origin/master
diff --git a/README.md b/README.md
deleted file mode 100644
index 9001e3b..0000000
--- a/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-The html page is made using html,css, javascript which mainly focuses on
calculating the age of the person .
-The user inputs his date of birth .
-The output is his age in completed years.
-This is a demostration project.

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git merge origin/master
Updating ada7e41..d422ee1
Fast-forward
README.md | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 README.md

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git status
On branch master
Your branch is up to date with 'origin/master'.

nothing to commit, working tree clean

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git pull origin
remote: Enumerating objects: 5, done.
remote: Counting objects: 100% (5/5), done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 3 (delta 2), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), 703 bytes | 3.00 KiB/s, done.
From https://github.com/NILESH-2003/Age_calculate
d422ee1..0d8d388 master -> origin/master
Updating d422ee1..0d8d388
Fast-forward
README.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git commit -a -m "Updated again index.html"
[master 67855fa] Updated again index.html
1 file changed, 1 insertion(+), 1 deletion(-)

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)

nothing to commit, working tree clean

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git push origin
Enumerating objects: 5, done.
Counting objects: 100% (5/5), done.
Delta compression using up to 4 threads
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 319 bytes | 319.00 KiB/s, done.
Total 3 (delta 2), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
To https://github.com/NILESH-2003/Age_calculate.git
0d8d388..67855fa master -> master

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git pull
remote: Enumerating objects: 5, done.
remote: Counting objects: 100% (5/5), done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 3 (delta 2), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), 666 bytes | 1024 bytes/s, done.
From https://github.com/NILESH-2003/Age_calculate
* [new branch] random -> origin/random
Already up to date.

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git status
On branch master
Your branch is up to date with 'origin/master'.

nothing to commit, working tree clean

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git branch
* master

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git branch -a
* master
remotes/origin/master
remotes/origin/random

91893@DESKTOP-12II41F MINGW64 ~/myproject (master)


$ git checkout random
Switched to a new branch 'random'
branch 'random' set up to track 'origin/random'.

91893@DESKTOP-12II41F MINGW64 ~/myproject (random)


$ git pull
Already up to date.

91893@DESKTOP-12II41F MINGW64 ~/myproject (random)


$ git branch
master
* random
91893@DESKTOP-12II41F MINGW64 ~/myproject (random)
$ git checkout -b update-readme
Switched to a new branch 'update-readme'

91893@DESKTOP-12II41F MINGW64 ~/myproject (update-readme)


$ git status
On branch update-readme
nothing to commit, working tree clean

91893@DESKTOP-12II41F MINGW64 ~/myproject (update-readme)


$ git status
On branch update-readme
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: README.md

no changes added to commit (use "git add" and/or "git commit -a")

91893@DESKTOP-12II41F MINGW64 ~/myproject (update-readme)


$ git add README.md

91893@DESKTOP-12II41F MINGW64 ~/myproject (update-readme)


$ git status
On branch update-readme
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: README.md

91893@DESKTOP-12II41F MINGW64 ~/myproject (update-readme)


$ git commit -m "Nilesh updated readme "
[update-readme cfa1e57] Nilesh updated readme
1 file changed, 1 insertion(+)

91893@DESKTOP-12II41F MINGW64 ~/myproject (update-readme)


$ git push origin update-readme
Enumerating objects: 9, done.
Counting objects: 100% (9/9), done.
Delta compression using up to 4 threads
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 1004 bytes | 1004.00 KiB/s, done.
Total 6 (delta 4), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (4/4), completed with 3 local objects.
remote:
remote: Create a pull request for 'update-readme' on GitHub by visiting:
remote: https://github.com/NILESH-2003/Age_calculate/pull/new/update-readme
remote:
To https://github.com/NILESH-2003/Age_calculate.git
* [new branch] update-readme -> update-readme

91893@DESKTOP-12II41F MINGW64 ~/myproject (update-readme)


$ git remote add gh-page https://github.com/NILESH-2003/NILESH-2003.github.io.git

91893@DESKTOP-12II41F MINGW64 ~/myproject (update-readme)


$ git push gh-page master
Enumerating objects: 34, done.
Counting objects: 100% (34/34), done.
Delta compression using up to 4 threads
Compressing objects: 100% (34/34), done.
Writing objects: 100% (34/34), 121.70 KiB | 3.29 MiB/s, done.
Total 34 (delta 18), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (18/18), done.
To https://github.com/NILESH-2003/NILESH-2003.github.io.git
* [new branch] master -> master

91893@DESKTOP-12II41F MINGW64 ~/myproject (update-readme)


$ git clone https://github.com/w3schools-test/w3schools-test.github.io.git
Cloning into 'w3schools-test.github.io'...
remote: Enumerating objects: 7791, done.
remote: Counting objects: 100% (3851/3851), done.
remote: Compressing objects: 100% (122/122), done.
remote: Total 7791 (delta 3753), reused 3776 (delta 3727), pack-reused 3940
Receiving objects: 100% (7791/7791), 2.74 MiB | 683.00 KiB/s, done.
Resolving deltas: 100% (4681/4681), done.

91893@DESKTOP-12II41F MINGW64 ~/myproject (update-readme)


$ ls
Age_calculate.html README.md exit w3schools-test.github.io/
Calci.html abc.avif index.html

91893@DESKTOP-12II41F MINGW64 ~/myproject (update-readme)


$ cd w3schools-test.github.io

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git status
On branch master
Your branch is up to date with 'origin/master'.

nothing to commit, working tree clean

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git log
commit 49312ec6ad109110fbc67d4d125de876ac64659f (HEAD -> master, origin/master,
origin/HEAD)
Merge: 392457e 86bc82d
Author: w3schools-test <77673807+w3schools-test@users.noreply.github.com>
Date: Fri Dec 22 09:54:42 2023 +0100

Merge pull request #2519 from AlexTroyno/master

Update index.html

commit 392457e4a2494f6cbe3e06c6262d044abe6fcfa1
Merge: 8ace9fd 4c87192
Author: w3schools-test <77673807+w3schools-test@users.noreply.github.com>
Date: Fri Dec 22 09:54:21 2023 +0100

Merge pull request #2517 from santi1229/master

Added my input at index.html

commit 4c8719255b354fcc818d46410667dd635ab46400
Merge: 5c67ced 8ace9fd
Author: w3schools-test <77673807+w3schools-test@users.noreply.github.com>
Date: Fri Dec 22 09:54:11 2023 +0100

Merge branch 'master' into master


commit 8ace9fd57451f7a804591379efa0471404f2f870
Merge: 4e4c34f 281b41c
Author: w3schools-test <77673807+w3schools-test@users.noreply.github.com>
Date: Fri Dec 22 09:53:23 2023 +0100

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git remote -v
origin https://github.com/w3schools-test/w3schools-test.github.io.git (fetch)
origin https://github.com/w3schools-test/w3schools-test.github.io.git (push)

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git remote rename origin upstream
Renaming remote references: 100% (4/4), done.

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git remote -v
upstream https://github.com/w3schools-test/w3schools-test.github.io.git
(fetch)
upstream https://github.com/w3schools-test/w3schools-test.github.io.git
(push)

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git remote add origin https://github.com/w3schools-test/w3schools-
test.github.io.git

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git remote -v
origin https://github.com/w3schools-test/w3schools-test.github.io.git (fetch)
origin https://github.com/w3schools-test/w3schools-test.github.io.git (push)
upstream https://github.com/w3schools-test/w3schools-test.github.io.git
(fetch)
upstream https://github.com/w3schools-test/w3schools-test.github.io.git
(push)

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git push origin
remote: Permission to w3schools-test/w3schools-test.github.io.git denied to NILESH-
2003.
fatal: unable to access 'https://github.com/w3schools-test/w3schools-
test.github.io.git/': The requested URL returned error: 403

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ touch .gitignore

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ ssh-keygen -t rsa -b 4096 -C "nira21cs@cmrit.ac.in"
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/91893/.ssh/id_rsa): chu.txt
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in chu.txt
Your public key has been saved in chu.txt.pub
The key fingerprint is:
SHA256:NvPJuGvwxOBFh8srErq2PVxe3dwfteAlKYP1B9C2P9U nira21cs@cmrit.ac.in
The key's randomart image is:
+---[RSA 4096]----+
| . .o |
| o .. + |
| o oo o + .|
| . . +. o * oE|
| . o +So o+.* +|
| . . =.=*..o..= |
| o + *. + .o|
| o.o . o. .|
| ..... .o. |
+----[SHA256]-----+

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ ssh-add /Users/91893/.ssh/id_rsa
Could not open a connection to your authentication agent.

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ ssh-keygen -t rsa -b 4096 -C "nira21cs@cmrit.ac.in"
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/91893/.ssh/id_rsa):
Created directory '/c/Users/91893/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /c/Users/91893/.ssh/id_rsa
Your public key has been saved in /c/Users/91893/.ssh/id_rsa.pub
The key fingerprint is:
SHA256:/HL0mHhhfL2iTH6W+6lcJg1oE7gAGs3JqJp5cknu2HM nira21cs@cmrit.ac.in
The key's randomart image is:
+---[RSA 4096]----+
| .=.. |
| .o=. . |
| .. . . . |
|. . o o o . |
|.= . S O o . |
|= = * B o . |
| B o B +.= |
|. + E B o+= . |
| o +o++o |
+----[SHA256]-----+

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ ssh-add /Users/91893/.ssh/id_rsa
Could not open a connection to your authentication agent.

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ ssh-add /c/Users/91893/.ssh/id_rsa
Could not open a connection to your authentication agent.

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ ssh-add /c/Users/91893/.ssh/id_rsa
Could not open a connection to your authentication agent.

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ clip < /c/Users/91893/.ssh/id_rsa.pub

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git commit -m "Just a regular update"
On branch master
Your branch is up to date with 'upstream/master'.

Untracked files:
(use "git add <file>..." to include in what will be committed)
chu.txt
chu.txt.pub

nothing added to commit but untracked files present (use "git add" to track)

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git log --oneline
49312ec (HEAD -> master, upstream/master, upstream/HEAD) Merge pull request #2519
from AlexTroyno/master
392457e Merge pull request #2517 from santi1229/master
4c87192 Merge branch 'master' into master
8ace9fd Merge pull request #2515 from luiscostasp/master
86bc82d Update index.html
5c67ced Added my input at index.html
281b41c Added a message by luiscostas
4e4c34f Merge pull request #2512 from swat-k/master
20dfd8f Update index.html
ab63ab5 Update index.html
5be7387 Merge pull request #2511 from MateKornsee/master
c7423a6 Added thanking message
1c46181 Merge pull request #2506 from bhagyesh-nimbalkar/master
6425a7c Update index.html
5e495b0 Update index.html
5bb13a6 Merge branch 'w3schools-test:master' into master
0b93818 Update index.html
9e764d7 Merge pull request #2505 from Ayush-Baranwal-X/master
cb9db57 Merge pull request #2504 from wilson-here/master
472935e Merge pull request #2503 from AWorldOfMysteries/master
e9099f6 Merge pull request #2502 from GustavoEsposar/master
3330596 Merge pull request #2500 from sulsiperis/master
ba55e0f Thanks Message
67bfa59 Added my message
c45cc61 Added my message
1a6637c Added my message
aad403d Added my message
a8c3dec Added my message
84b3758 Added my message

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git revert HEAD --no-edit
error: commit 49312ec6ad109110fbc67d4d125de876ac64659f is a merge but no -m option
was given.
fatal: revert failed

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ cd myproject
bash: cd: myproject: No such file or directory

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git revert HEAD --no-edit
error: commit 49312ec6ad109110fbc67d4d125de876ac64659f is a merge but no -m option
was given.
fatal: revert failed

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git reset 84b3758
Unstaged changes after reset:
M index.html
91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)
$ git log --oneline
84b3758 (HEAD -> master) Added my message
41bcc13 Merge pull request #2499 from RudraCorteva/master
1825c93 Merge pull request #2498 from tteduu/master
dada499 q git commit -a "Modified index.html"
39ebf5d Added my thank you to w3school
e8f71ba Added my name to the learning curve
4884ded Merge pull request #2495 from YisakAbrahamK/master
8c94966 Merge pull request #2494 from GuiArmanLi/GuiArmanLi-again
169497c Merge pull request #2493 from amiralisahraei/master
e8ad1d4 Added my own message
974287a Update content
222836b Amirali has changes index.html
92be927 Merge pull request #1 from GuiArmanLi/GuiArmanLi-patch-1
0ef89f7 Update index.html
b79abc3 Merge pull request #2483 from Bhanuthej07/master
31a63f2 Merge pull request #2482 from TenVzadu/master
6aed86a useless let removed; top container's border added
718d113 infinite script removed, date updated
c77d51b Merged after fixing conflict
e7c8936 Adding contribution
76c2332 Merge pull request #2477 from part1zan0/master
626b42d Merge pull request #2470 from EssYassine/master
49dfa98 Another message added
eca8a66 Updated index.html
ce1f480 added a message to index.html (updated)
6d23bcc Merge pull request #2469 from 0000simon/master
c35dbc0 added a message to index.html
fc5658b added a message to index.html
3e7b58e Guys, if you see the log, make sure to edit the index.html file before the
push, you can add a message at the end of the file.

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$ git commit -m "Adding lines"
On branch master
Your branch is behind 'upstream/master' by 33 commits, and can be fast-forwarded.
(use "git pull" to update your local branch)

Changes not staged for commit:


(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: index.html

Untracked files:
(use "git add <file>..." to include in what will be committed)
chu.txt
chu.txt.pub

no changes added to commit (use "git add" and/or "git commit -a")

91893@DESKTOP-12II41F MINGW64 ~/myproject/w3schools-test.github.io (master)


$

You might also like