SlideShare a Scribd company logo
1 of 14
Git bash
Welcome to Git (version 1.9.5-preview20150319)
Run 'git help git' to display the help index.
Run 'git help <command>' to display help for specific commands.
anchal.chadha@BSSDT018 ~
$ pwd
/c/Users/anchal.chadha
anchal.chadha@BSSDT018 ~
$ mkdir .ssh
anchal.chadha@BSSDT018 ~
$ cd .ssh
anchal.chadha@BSSDT018 ~/.ssh
$ ssh-keygen -trsa -C"anchalchadha01@gmail.com"
Generating public/private rsa key pair.
Enter file in which to savethe key (/c/Users/anchal.chadha/.ssh/id_rsa):
Enter passphrase(empty for no passphrase):
Enter same passphraseagain:
Your identification has been saved in /c/Users/anchal.chadha/.ssh/id_rsa.
Your public key has been saved in /c/Users/anchal.chadha/.ssh/id_rsa.pub.
The key fingerprintis:
d3:5b:5b:1f:f7:cc:c4:8c:dc:e1:7b:e0:f6:0c:4d:15 anchalchadha01@gmail.com
The key's randomartimage is:
+--[ RSA 2048]----+
| E |
| .|
| ..|
| . ..=o|
| S . . =oB|
| . o + O=|
| . . +.B|
| . +.|
| o|
+-----------------+
anchal.chadha@BSSDT018 ~/.ssh
$ ssh -v git@github.com
OpenSSH_6.6.1, OpenSSL 1.0.1m19 Mar 2015
debug1: Connecting to github.com[192.30.252.131] port22.
debug1: Connection established.
debug1: identity file /c/Users/anchal.chadha/.ssh/id_rsa type1
debug1: identity file /c/Users/anchal.chadha/.ssh/id_rsa-certtype-1
debug1: identity file /c/Users/anchal.chadha/.ssh/id_dsa type -1
debug1: identity file /c/Users/anchal.chadha/.ssh/id_dsa-certtype-1
debug1: identity file /c/Users/anchal.chadha/.ssh/id_ecdsa type -1
debug1: identity file /c/Users/anchal.chadha/.ssh/id_ecdsa-certtype-1
debug1: identity file /c/Users/anchal.chadha/.ssh/id_ed25519 type -1
debug1: identity file /c/Users/anchal.chadha/.ssh/id_ed25519-certtype-1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6.1
debug1: Remote protocol version 2.0, remotesoftwareversion libssh-0.6.0
debug1: no match: libssh-0.6.0
debug1: SSH2_MSG_KEXINITsent
debug1: SSH2_MSG_KEXINITreceived
debug1: kex: server->client aes128-ctr hmac-sha1none
debug1: kex: client->server aes128-ctr hmac-sha1none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server hostkey: RSA 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48
The authenticity of host'github.com (192.30.252.131)'can'tbe established.
RSA key fingerprintis 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sureyou wantto continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,192.30.252.131'(RSA) to the list of
know
n hosts.
debug1: ssh_rsa_verify: signaturecorrect
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUESTsent
debug1: SSH2_MSG_SERVICE_ACCEPTreceived
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /c/Users/anchal.chadha/.ssh/id_rsa
debug1: Authentications that can continue: publickey
debug1: Trying private key: /c/Users/anchal.chadha/.ssh/id_dsa
debug1: Trying private key: /c/Users/anchal.chadha/.ssh/id_ecdsa
debug1: Trying private key: /c/Users/anchal.chadha/.ssh/id_ed25519
debug1: No more authentication methods to try.
Permission denied (publickey).
anchal.chadha@BSSDT018 ~/.ssh
$ cd ..
anchal.chadha@BSSDT018 ~
$ cd ..
anchal.chadha@BSSDT018 /c/Users
$ cd..
sh.exe": cd..: command not found
anchal.chadha@BSSDT018 /c/Users
$ cd ..
anchal.chadha@BSSDT018 /c
$ cd C:anchalSanyamex2
anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2
$ pwd
/c/anchal/Sanyam/ex2
anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2
$ git init
Initialized empty Git repository in c:/anchal/Sanyam/ex2/.git/
anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master)
$ Git add .
anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master)
$ git commit -m"firstcommit"
[master (root-commit) fdfb91e] firstcommit
Committer: unknown <anchal.chadha@BSSDT018.betasoftsystems.com>
Your name and email address wereconfigured automatically based
on your usernameand hostname. Please check that they are accurate.
You can suppress this messageby setting them explicitly:
git config --global user.name"Your Name"
git config --global user.emailyou@example.com
After doing this, you may fix the identity used for this commit with:
git commit --amend --reset-author
5 files changed, 51 insertions(+)
create mode 100644 .classpath
create mode 100644 .project
create mode 100644 .settings/org.eclipse.jdt.core.prefs
create mode 100644 bin/ex2/testfile.class
create mode 100644 src/ex2/testfile.java
anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master)
$ git remote add origin https://github.com/AnchalChadha/NewRep.git
anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master)
$ git push -u origin master
Usernamefor 'https://github.com':
Password for 'https://github.com':
remote: Anonymous access to AnchalChadha/NewRep.git denied.
fatal: Authentication failed for
'https://github.com/AnchalChadha/NewRep.git/'
anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master)
$
anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master)
$
anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master)
$
anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master)
$ git push -u origin master
Usernamefor 'https://github.com': anchalchadha
Password for 'https://anchalchadha@github.com':
Counting objects: 12, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (8/8),done.
Writing objects: 100% (12/12), 1.95KiB| 0 bytes/s, done.
Total 12 (delta 0), reused 0 (delta 0)
To https://github.com/AnchalChadha/NewRep.git
* [new branch] master -> master
Branch master set up to track remote branch master fromorigin.
anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master)
$
Cmd
Git bash

More Related Content

What's hot

Workshop on command line tools - day 1
Workshop on command line tools - day 1Workshop on command line tools - day 1
Workshop on command line tools - day 1Leandro Lima
 
Workshop on command line tools - day 2
Workshop on command line tools - day 2Workshop on command line tools - day 2
Workshop on command line tools - day 2Leandro Lima
 
Using the Command Line with Magento
Using the Command Line with MagentoUsing the Command Line with Magento
Using the Command Line with MagentoMatthew Haworth
 
PHP Backdoor: The rise of the vuln
PHP Backdoor: The rise of the vulnPHP Backdoor: The rise of the vuln
PHP Backdoor: The rise of the vulnSandro Zaccarini
 
Code obfuscation, php shells & more
Code obfuscation, php shells & moreCode obfuscation, php shells & more
Code obfuscation, php shells & moreMattias Geniar
 
How to add user in system without useradd command
How to add user in system without useradd commandHow to add user in system without useradd command
How to add user in system without useradd commandAkshay Ithape
 
Creating a keystroke logger in unix shell scripting
Creating a keystroke logger in unix shell scriptingCreating a keystroke logger in unix shell scripting
Creating a keystroke logger in unix shell scriptingDan Morrill
 
Git 201 - A Deeper Look at Git @ KCDC 2016
Git 201 - A Deeper Look at Git @ KCDC 2016Git 201 - A Deeper Look at Git @ KCDC 2016
Git 201 - A Deeper Look at Git @ KCDC 2016Arthur Doler
 
Php web backdoor obfuscation
Php web backdoor obfuscationPhp web backdoor obfuscation
Php web backdoor obfuscationSandro Zaccarini
 

What's hot (13)

n
nn
n
 
Workshop on command line tools - day 1
Workshop on command line tools - day 1Workshop on command line tools - day 1
Workshop on command line tools - day 1
 
Workshop on command line tools - day 2
Workshop on command line tools - day 2Workshop on command line tools - day 2
Workshop on command line tools - day 2
 
00-Review of Linux Basics
00-Review of Linux Basics00-Review of Linux Basics
00-Review of Linux Basics
 
Dicas de SSH
Dicas de SSHDicas de SSH
Dicas de SSH
 
Using the Command Line with Magento
Using the Command Line with MagentoUsing the Command Line with Magento
Using the Command Line with Magento
 
PHP Backdoor: The rise of the vuln
PHP Backdoor: The rise of the vulnPHP Backdoor: The rise of the vuln
PHP Backdoor: The rise of the vuln
 
Code obfuscation, php shells & more
Code obfuscation, php shells & moreCode obfuscation, php shells & more
Code obfuscation, php shells & more
 
How to add user in system without useradd command
How to add user in system without useradd commandHow to add user in system without useradd command
How to add user in system without useradd command
 
lec2.docx
lec2.docxlec2.docx
lec2.docx
 
Creating a keystroke logger in unix shell scripting
Creating a keystroke logger in unix shell scriptingCreating a keystroke logger in unix shell scripting
Creating a keystroke logger in unix shell scripting
 
Git 201 - A Deeper Look at Git @ KCDC 2016
Git 201 - A Deeper Look at Git @ KCDC 2016Git 201 - A Deeper Look at Git @ KCDC 2016
Git 201 - A Deeper Look at Git @ KCDC 2016
 
Php web backdoor obfuscation
Php web backdoor obfuscationPhp web backdoor obfuscation
Php web backdoor obfuscation
 

Similar to Git bash

An introduction to SSH
An introduction to SSHAn introduction to SSH
An introduction to SSHnussbauml
 
Introduction to SSH
Introduction to SSHIntroduction to SSH
Introduction to SSHHemant Shah
 
Linux advanced privilege escalation
Linux advanced privilege escalationLinux advanced privilege escalation
Linux advanced privilege escalationJameel Nabbo
 
Install git and drush on Godaddy shared hosting
Install git and drush on Godaddy shared hostingInstall git and drush on Godaddy shared hosting
Install git and drush on Godaddy shared hostingC13L0
 
Postgresql 12 streaming replication hol
Postgresql 12 streaming replication holPostgresql 12 streaming replication hol
Postgresql 12 streaming replication holVijay Kumar N
 
Tatu: ssh as a service
Tatu: ssh as a serviceTatu: ssh as a service
Tatu: ssh as a servicePino deCandia
 
Debugging Network Issues
Debugging Network IssuesDebugging Network Issues
Debugging Network IssuesApcera
 
SSH: Seguranca no Acesso Remoto
SSH: Seguranca no Acesso RemotoSSH: Seguranca no Acesso Remoto
SSH: Seguranca no Acesso RemotoTiago Cruz
 
How To Setup SSH Keys on CentOS 7
How To Setup SSH Keys on CentOS 7How To Setup SSH Keys on CentOS 7
How To Setup SSH Keys on CentOS 7VCP Muthukrishna
 
Service intergration
Service intergration Service intergration
Service intergration 재민 장
 
Git Workshop : Git On The Server
Git Workshop : Git On The ServerGit Workshop : Git On The Server
Git Workshop : Git On The ServerWildan Maulana
 
Copying files between linux machines using scp and ssh without linux user pas...
Copying files between linux machines using scp and ssh without linux user pas...Copying files between linux machines using scp and ssh without linux user pas...
Copying files between linux machines using scp and ssh without linux user pas...Ravi Kumar Lanke
 
File encryption. [32] Write a program which accepts a filename as a .pdf
File encryption. [32] Write a program which accepts a filename as a .pdfFile encryption. [32] Write a program which accepts a filename as a .pdf
File encryption. [32] Write a program which accepts a filename as a .pdfjyothimuppasani1
 

Similar to Git bash (20)

An introduction to SSH
An introduction to SSHAn introduction to SSH
An introduction to SSH
 
tutorial-ssh.pdf
tutorial-ssh.pdftutorial-ssh.pdf
tutorial-ssh.pdf
 
OpenSSH tricks
OpenSSH tricksOpenSSH tricks
OpenSSH tricks
 
Intro to SSH
Intro to SSHIntro to SSH
Intro to SSH
 
Introduction to SSH
Introduction to SSHIntroduction to SSH
Introduction to SSH
 
Linux advanced privilege escalation
Linux advanced privilege escalationLinux advanced privilege escalation
Linux advanced privilege escalation
 
Install git and drush on Godaddy shared hosting
Install git and drush on Godaddy shared hostingInstall git and drush on Godaddy shared hosting
Install git and drush on Godaddy shared hosting
 
SSH how to 2011
SSH how to 2011SSH how to 2011
SSH how to 2011
 
Postgresql 12 streaming replication hol
Postgresql 12 streaming replication holPostgresql 12 streaming replication hol
Postgresql 12 streaming replication hol
 
SSH.pdf
SSH.pdfSSH.pdf
SSH.pdf
 
Tatu: ssh as a service
Tatu: ssh as a serviceTatu: ssh as a service
Tatu: ssh as a service
 
Debugging Network Issues
Debugging Network IssuesDebugging Network Issues
Debugging Network Issues
 
SSH: Seguranca no Acesso Remoto
SSH: Seguranca no Acesso RemotoSSH: Seguranca no Acesso Remoto
SSH: Seguranca no Acesso Remoto
 
How To Setup SSH Keys on CentOS 7
How To Setup SSH Keys on CentOS 7How To Setup SSH Keys on CentOS 7
How To Setup SSH Keys on CentOS 7
 
Service intergration
Service intergration Service intergration
Service intergration
 
Linuxserver harden
Linuxserver hardenLinuxserver harden
Linuxserver harden
 
Git Workshop : Git On The Server
Git Workshop : Git On The ServerGit Workshop : Git On The Server
Git Workshop : Git On The Server
 
Copying files between linux machines using scp and ssh without linux user pas...
Copying files between linux machines using scp and ssh without linux user pas...Copying files between linux machines using scp and ssh without linux user pas...
Copying files between linux machines using scp and ssh without linux user pas...
 
File encryption. [32] Write a program which accepts a filename as a .pdf
File encryption. [32] Write a program which accepts a filename as a .pdfFile encryption. [32] Write a program which accepts a filename as a .pdf
File encryption. [32] Write a program which accepts a filename as a .pdf
 
01c shell
01c shell01c shell
01c shell
 

More from Sanyam Arora

More from Sanyam Arora (7)

Resume_3[1]
Resume_3[1]Resume_3[1]
Resume_3[1]
 
Pom
PomPom
Pom
 
Git bashGit bucket
Git bashGit bucketGit bashGit bucket
Git bashGit bucket
 
Git bucketGit bash
Git bucketGit bashGit bucketGit bash
Git bucketGit bash
 
Git bucketGit bash
Git bucketGit bashGit bucketGit bash
Git bucketGit bash
 
ffdfdfdfGit bash
ffdfdfdfGit bashffdfdfdfGit bash
ffdfdfdfGit bash
 
Git bash
Git bashGit bash
Git bash
 

Recently uploaded

We’re looking for a Technology consultant to join our Team!
We’re looking for a Technology consultant to join our Team!We’re looking for a Technology consultant to join our Team!
We’re looking for a Technology consultant to join our Team!Juli Boned
 
Infant Guidance and Counselling and Life Skills Education syllabus.docx
Infant Guidance and Counselling  and Life Skills Education syllabus.docxInfant Guidance and Counselling  and Life Skills Education syllabus.docx
Infant Guidance and Counselling and Life Skills Education syllabus.docxGoldenKahwema
 
Career opportunities after 12th Science 2024 Biology group
Career opportunities after 12th Science 2024 Biology groupCareer opportunities after 12th Science 2024 Biology group
Career opportunities after 12th Science 2024 Biology groupMohmmedirfan Momin
 
LinkedIn For Job Search Presentation May 2024
LinkedIn For Job Search Presentation May 2024LinkedIn For Job Search Presentation May 2024
LinkedIn For Job Search Presentation May 2024Bruce Bennett
 
B.tech civil major project by Deepak Kumar
B.tech civil major project by Deepak KumarB.tech civil major project by Deepak Kumar
B.tech civil major project by Deepak KumarDeepak15CivilEngg
 
如何办理(USC毕业证书)南加利福尼亚大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(USC毕业证书)南加利福尼亚大学毕业证成绩单本科硕士学位证留信学历认证如何办理(USC毕业证书)南加利福尼亚大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(USC毕业证书)南加利福尼亚大学毕业证成绩单本科硕士学位证留信学历认证gakamzu
 
TEST BANK For Growth and Development Across the Lifespan, 3rd Edition By Glor...
TEST BANK For Growth and Development Across the Lifespan, 3rd Edition By Glor...TEST BANK For Growth and Development Across the Lifespan, 3rd Edition By Glor...
TEST BANK For Growth and Development Across the Lifespan, 3rd Edition By Glor...rightmanforbloodline
 
K Venkat Naveen Kumar | GCP Data Engineer | CV
K Venkat Naveen Kumar | GCP Data Engineer | CVK Venkat Naveen Kumar | GCP Data Engineer | CV
K Venkat Naveen Kumar | GCP Data Engineer | CVK VENKAT NAVEEN KUMAR
 
Rahul Chauhan - Data Scientist Resume.pdf
Rahul Chauhan - Data Scientist Resume.pdfRahul Chauhan - Data Scientist Resume.pdf
Rahul Chauhan - Data Scientist Resume.pdfrach3246
 
Fracture design PowerPoint presentations
Fracture design PowerPoint presentationsFracture design PowerPoint presentations
Fracture design PowerPoint presentationsjitiniift
 
Prest Reed Portfolio revamp Full Sail Presentation 2
Prest Reed Portfolio revamp Full Sail Presentation 2Prest Reed Portfolio revamp Full Sail Presentation 2
Prest Reed Portfolio revamp Full Sail Presentation 25203records
 
Malayali ℂollege ℂall Girls Rajkot Book Esha 7877925207 Top Class ℂall Girl S...
Malayali ℂollege ℂall Girls Rajkot Book Esha 7877925207 Top Class ℂall Girl S...Malayali ℂollege ℂall Girls Rajkot Book Esha 7877925207 Top Class ℂall Girl S...
Malayali ℂollege ℂall Girls Rajkot Book Esha 7877925207 Top Class ℂall Girl S...Payal Garg #K09
 
Ganga Path Project (marine drive project) Patna ,Bihar .pdf
Ganga Path Project (marine drive project) Patna ,Bihar .pdfGanga Path Project (marine drive project) Patna ,Bihar .pdf
Ganga Path Project (marine drive project) Patna ,Bihar .pdfDeepak15CivilEngg
 
如何办理(NEU毕业证书)东北大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(NEU毕业证书)东北大学毕业证成绩单本科硕士学位证留信学历认证如何办理(NEU毕业证书)东北大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(NEU毕业证书)东北大学毕业证成绩单本科硕士学位证留信学历认证gakamzu
 
一比一原版赫尔大学毕业证如何办理
一比一原版赫尔大学毕业证如何办理一比一原版赫尔大学毕业证如何办理
一比一原版赫尔大学毕业证如何办理F
 
如何办理(CQU毕业证书)中央昆士兰大学毕业证成绩单原件一模一样
如何办理(CQU毕业证书)中央昆士兰大学毕业证成绩单原件一模一样如何办理(CQU毕业证书)中央昆士兰大学毕业证成绩单原件一模一样
如何办理(CQU毕业证书)中央昆士兰大学毕业证成绩单原件一模一样muwyto
 
Launch Your Research Career: A Beginner's Guide
Launch Your Research Career: A Beginner's GuideLaunch Your Research Career: A Beginner's Guide
Launch Your Research Career: A Beginner's GuideKaziFaisalAlam
 
如何办理(VIU毕业证书)温哥华岛大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(VIU毕业证书)温哥华岛大学毕业证成绩单本科硕士学位证留信学历认证如何办理(VIU毕业证书)温哥华岛大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(VIU毕业证书)温哥华岛大学毕业证成绩单本科硕士学位证留信学历认证gkyvm
 
B.tech Civil Engineering Major Project by Deepak Kumar ppt.pdf
B.tech Civil Engineering Major Project by Deepak Kumar ppt.pdfB.tech Civil Engineering Major Project by Deepak Kumar ppt.pdf
B.tech Civil Engineering Major Project by Deepak Kumar ppt.pdfDeepak15CivilEngg
 

Recently uploaded (20)

We’re looking for a Technology consultant to join our Team!
We’re looking for a Technology consultant to join our Team!We’re looking for a Technology consultant to join our Team!
We’re looking for a Technology consultant to join our Team!
 
Infant Guidance and Counselling and Life Skills Education syllabus.docx
Infant Guidance and Counselling  and Life Skills Education syllabus.docxInfant Guidance and Counselling  and Life Skills Education syllabus.docx
Infant Guidance and Counselling and Life Skills Education syllabus.docx
 
Career opportunities after 12th Science 2024 Biology group
Career opportunities after 12th Science 2024 Biology groupCareer opportunities after 12th Science 2024 Biology group
Career opportunities after 12th Science 2024 Biology group
 
LinkedIn For Job Search Presentation May 2024
LinkedIn For Job Search Presentation May 2024LinkedIn For Job Search Presentation May 2024
LinkedIn For Job Search Presentation May 2024
 
B.tech civil major project by Deepak Kumar
B.tech civil major project by Deepak KumarB.tech civil major project by Deepak Kumar
B.tech civil major project by Deepak Kumar
 
如何办理(USC毕业证书)南加利福尼亚大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(USC毕业证书)南加利福尼亚大学毕业证成绩单本科硕士学位证留信学历认证如何办理(USC毕业证书)南加利福尼亚大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(USC毕业证书)南加利福尼亚大学毕业证成绩单本科硕士学位证留信学历认证
 
TEST BANK For Growth and Development Across the Lifespan, 3rd Edition By Glor...
TEST BANK For Growth and Development Across the Lifespan, 3rd Edition By Glor...TEST BANK For Growth and Development Across the Lifespan, 3rd Edition By Glor...
TEST BANK For Growth and Development Across the Lifespan, 3rd Edition By Glor...
 
K Venkat Naveen Kumar | GCP Data Engineer | CV
K Venkat Naveen Kumar | GCP Data Engineer | CVK Venkat Naveen Kumar | GCP Data Engineer | CV
K Venkat Naveen Kumar | GCP Data Engineer | CV
 
Rahul Chauhan - Data Scientist Resume.pdf
Rahul Chauhan - Data Scientist Resume.pdfRahul Chauhan - Data Scientist Resume.pdf
Rahul Chauhan - Data Scientist Resume.pdf
 
Fracture design PowerPoint presentations
Fracture design PowerPoint presentationsFracture design PowerPoint presentations
Fracture design PowerPoint presentations
 
Cara Gugurkan Kandungan Awal Kehamilan 1 bulan (087776558899)
Cara Gugurkan Kandungan Awal Kehamilan 1 bulan (087776558899)Cara Gugurkan Kandungan Awal Kehamilan 1 bulan (087776558899)
Cara Gugurkan Kandungan Awal Kehamilan 1 bulan (087776558899)
 
Prest Reed Portfolio revamp Full Sail Presentation 2
Prest Reed Portfolio revamp Full Sail Presentation 2Prest Reed Portfolio revamp Full Sail Presentation 2
Prest Reed Portfolio revamp Full Sail Presentation 2
 
Malayali ℂollege ℂall Girls Rajkot Book Esha 7877925207 Top Class ℂall Girl S...
Malayali ℂollege ℂall Girls Rajkot Book Esha 7877925207 Top Class ℂall Girl S...Malayali ℂollege ℂall Girls Rajkot Book Esha 7877925207 Top Class ℂall Girl S...
Malayali ℂollege ℂall Girls Rajkot Book Esha 7877925207 Top Class ℂall Girl S...
 
Ganga Path Project (marine drive project) Patna ,Bihar .pdf
Ganga Path Project (marine drive project) Patna ,Bihar .pdfGanga Path Project (marine drive project) Patna ,Bihar .pdf
Ganga Path Project (marine drive project) Patna ,Bihar .pdf
 
如何办理(NEU毕业证书)东北大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(NEU毕业证书)东北大学毕业证成绩单本科硕士学位证留信学历认证如何办理(NEU毕业证书)东北大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(NEU毕业证书)东北大学毕业证成绩单本科硕士学位证留信学历认证
 
一比一原版赫尔大学毕业证如何办理
一比一原版赫尔大学毕业证如何办理一比一原版赫尔大学毕业证如何办理
一比一原版赫尔大学毕业证如何办理
 
如何办理(CQU毕业证书)中央昆士兰大学毕业证成绩单原件一模一样
如何办理(CQU毕业证书)中央昆士兰大学毕业证成绩单原件一模一样如何办理(CQU毕业证书)中央昆士兰大学毕业证成绩单原件一模一样
如何办理(CQU毕业证书)中央昆士兰大学毕业证成绩单原件一模一样
 
Launch Your Research Career: A Beginner's Guide
Launch Your Research Career: A Beginner's GuideLaunch Your Research Career: A Beginner's Guide
Launch Your Research Career: A Beginner's Guide
 
如何办理(VIU毕业证书)温哥华岛大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(VIU毕业证书)温哥华岛大学毕业证成绩单本科硕士学位证留信学历认证如何办理(VIU毕业证书)温哥华岛大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(VIU毕业证书)温哥华岛大学毕业证成绩单本科硕士学位证留信学历认证
 
B.tech Civil Engineering Major Project by Deepak Kumar ppt.pdf
B.tech Civil Engineering Major Project by Deepak Kumar ppt.pdfB.tech Civil Engineering Major Project by Deepak Kumar ppt.pdf
B.tech Civil Engineering Major Project by Deepak Kumar ppt.pdf
 

Git bash

  • 1. Git bash Welcome to Git (version 1.9.5-preview20150319) Run 'git help git' to display the help index. Run 'git help <command>' to display help for specific commands. anchal.chadha@BSSDT018 ~ $ pwd /c/Users/anchal.chadha anchal.chadha@BSSDT018 ~ $ mkdir .ssh anchal.chadha@BSSDT018 ~ $ cd .ssh anchal.chadha@BSSDT018 ~/.ssh $ ssh-keygen -trsa -C"anchalchadha01@gmail.com" Generating public/private rsa key pair. Enter file in which to savethe key (/c/Users/anchal.chadha/.ssh/id_rsa): Enter passphrase(empty for no passphrase): Enter same passphraseagain: Your identification has been saved in /c/Users/anchal.chadha/.ssh/id_rsa. Your public key has been saved in /c/Users/anchal.chadha/.ssh/id_rsa.pub. The key fingerprintis:
  • 2. d3:5b:5b:1f:f7:cc:c4:8c:dc:e1:7b:e0:f6:0c:4d:15 anchalchadha01@gmail.com The key's randomartimage is: +--[ RSA 2048]----+ | E | | .| | ..| | . ..=o| | S . . =oB| | . o + O=| | . . +.B| | . +.| | o| +-----------------+ anchal.chadha@BSSDT018 ~/.ssh $ ssh -v git@github.com OpenSSH_6.6.1, OpenSSL 1.0.1m19 Mar 2015 debug1: Connecting to github.com[192.30.252.131] port22. debug1: Connection established. debug1: identity file /c/Users/anchal.chadha/.ssh/id_rsa type1 debug1: identity file /c/Users/anchal.chadha/.ssh/id_rsa-certtype-1 debug1: identity file /c/Users/anchal.chadha/.ssh/id_dsa type -1 debug1: identity file /c/Users/anchal.chadha/.ssh/id_dsa-certtype-1 debug1: identity file /c/Users/anchal.chadha/.ssh/id_ecdsa type -1 debug1: identity file /c/Users/anchal.chadha/.ssh/id_ecdsa-certtype-1 debug1: identity file /c/Users/anchal.chadha/.ssh/id_ed25519 type -1
  • 3. debug1: identity file /c/Users/anchal.chadha/.ssh/id_ed25519-certtype-1 debug1: Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_6.6.1 debug1: Remote protocol version 2.0, remotesoftwareversion libssh-0.6.0 debug1: no match: libssh-0.6.0 debug1: SSH2_MSG_KEXINITsent debug1: SSH2_MSG_KEXINITreceived debug1: kex: server->client aes128-ctr hmac-sha1none debug1: kex: client->server aes128-ctr hmac-sha1none debug1: sending SSH2_MSG_KEX_ECDH_INIT debug1: expecting SSH2_MSG_KEX_ECDH_REPLY debug1: Server hostkey: RSA 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48 The authenticity of host'github.com (192.30.252.131)'can'tbe established. RSA key fingerprintis 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48. Are you sureyou wantto continue connecting (yes/no)? yes Warning: Permanently added 'github.com,192.30.252.131'(RSA) to the list of know n hosts. debug1: ssh_rsa_verify: signaturecorrect debug1: SSH2_MSG_NEWKEYS sent debug1: expecting SSH2_MSG_NEWKEYS debug1: SSH2_MSG_NEWKEYS received debug1: Roaming not allowed by server debug1: SSH2_MSG_SERVICE_REQUESTsent debug1: SSH2_MSG_SERVICE_ACCEPTreceived debug1: Authentications that can continue: publickey debug1: Next authentication method: publickey
  • 4. debug1: Offering RSA public key: /c/Users/anchal.chadha/.ssh/id_rsa debug1: Authentications that can continue: publickey debug1: Trying private key: /c/Users/anchal.chadha/.ssh/id_dsa debug1: Trying private key: /c/Users/anchal.chadha/.ssh/id_ecdsa debug1: Trying private key: /c/Users/anchal.chadha/.ssh/id_ed25519 debug1: No more authentication methods to try. Permission denied (publickey). anchal.chadha@BSSDT018 ~/.ssh $ cd .. anchal.chadha@BSSDT018 ~ $ cd .. anchal.chadha@BSSDT018 /c/Users $ cd.. sh.exe": cd..: command not found anchal.chadha@BSSDT018 /c/Users $ cd .. anchal.chadha@BSSDT018 /c $ cd C:anchalSanyamex2 anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 $ pwd
  • 5. /c/anchal/Sanyam/ex2 anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 $ git init Initialized empty Git repository in c:/anchal/Sanyam/ex2/.git/ anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master) $ Git add . anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master) $ git commit -m"firstcommit" [master (root-commit) fdfb91e] firstcommit Committer: unknown <anchal.chadha@BSSDT018.betasoftsystems.com> Your name and email address wereconfigured automatically based on your usernameand hostname. Please check that they are accurate. You can suppress this messageby setting them explicitly: git config --global user.name"Your Name" git config --global user.emailyou@example.com After doing this, you may fix the identity used for this commit with: git commit --amend --reset-author 5 files changed, 51 insertions(+) create mode 100644 .classpath
  • 6. create mode 100644 .project create mode 100644 .settings/org.eclipse.jdt.core.prefs create mode 100644 bin/ex2/testfile.class create mode 100644 src/ex2/testfile.java anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master) $ git remote add origin https://github.com/AnchalChadha/NewRep.git anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master) $ git push -u origin master Usernamefor 'https://github.com': Password for 'https://github.com': remote: Anonymous access to AnchalChadha/NewRep.git denied. fatal: Authentication failed for 'https://github.com/AnchalChadha/NewRep.git/' anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master) $ anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master) $ anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master) $ anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master) $ git push -u origin master
  • 7. Usernamefor 'https://github.com': anchalchadha Password for 'https://anchalchadha@github.com': Counting objects: 12, done. Delta compression using up to 2 threads. Compressing objects: 100% (8/8),done. Writing objects: 100% (12/12), 1.95KiB| 0 bytes/s, done. Total 12 (delta 0), reused 0 (delta 0) To https://github.com/AnchalChadha/NewRep.git * [new branch] master -> master Branch master set up to track remote branch master fromorigin. anchal.chadha@BSSDT018 /c/anchal/Sanyam/ex2 (master) $
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13. Cmd