$ git status
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# 1_CombineReplicatesFiles_Replicates2.sh
nothing added to commit but untracked files present (use "git add" to track)
$ git add *
$ git status
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# new file: 1_CombineReplicatesFiles_Replicates2.sh
#
$ git commit -m “message”
[master 0f26403] “message”
Committer: Sohyun Bang <sb14489@ss-sub3.gacrc.uga.edu>
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:
git config --global user.name "Your Name"
git config --global user.email you@example.com
After doing this, you may fix the identity used for this commit with:
git commit --amend --reset-author
1 file changed, 25 insertions(+)
create mode 100644 1_CombineReplicatesFiles_Replicates2.sh
$ git push
Counting objects: 4, done.
Delta compression using up to 16 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 797 bytes | 0 bytes/s, done.
Total 3 (delta 1), reused 0 (delta 0)
remote: Resolving deltas: 100% (1/1), completed with 1 local object.
To git@github.com:sdf12/1.scATAC-seq.git
35b696c..0f26403 master -> master