Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 820 Bytes

Git.md

File metadata and controls

28 lines (19 loc) · 820 Bytes

Tips-Git

Stop enter the passphrase

Pasted Graphic.tiff

duplicate the repository

Open Terminal.
Create a bare clone of the repository.
	git clone --bare [email protected]:coyawa/DataVisFinal.git
Mirror-push to the new repository.
	cd old-repository.git
	git push --mirror [email protected]:coyawa/CS573-DataVisFinal.git
Remove the temporary local repository you created in step 1.
	cd ..
	rm -rf DataVisFinal.git

SSH Key - Still asking for password and passphrase

Pasted Graphic_1.tiff