https://github.com/easingthemes/app_frontendtools
https://github.com/easingthemes/app_frontendtools
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/easingthemes/app_frontendtools
- Owner: easingthemes
- Created: 2014-11-03T23:13:47.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-03T23:58:11.000Z (over 11 years ago)
- Last Synced: 2025-03-16T21:23:06.633Z (over 1 year ago)
- Language: JavaScript
- Size: 148 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
app_frontendtools
=================
## SSH
1. Lists the files in your .ssh directory, if they exist`
`ls -al ~/.ssh
2. Create public key
`ssh-keygen -t rsa -C "your_email@example.com"`
3. Choose filename
`Enter file in which to save the key (/c/Users/you/.ssh/id_rsa): /c/Users/win7/.ssh/easingthemes@github [Press enter]`
4. Skip passphrase
`[Press enter]`
5. start the ssh-agent and add key
`ssh-agent -s`
`ssh-add ~/.ssh/easingthemes@github`
6. Copy the contents of the .pub file to your clipboard
`clip < ~/.ssh/easingthemes@github.pub`
7. Add key to GIT Host (Github, Bitbucket ...)
8. Test connection
`ssh -T git@github.com`
--- on error
`eval ssh-agent -s`
`ssh-add ~/.ssh/easingthemes@github`
## Git
1. Init git repo
`git init`
2. Add remote
`git remote add github git@github.com:easingthemes/app_frontendtools.git`
3. check remotes:
`git remote -v`
4. Add all files
`git add .`
5. Commit
`git commit -m "commit message"`
6. First push
`git push -u github master`
7. Pull
`git pull github master`