Created
December 1, 2017 22:46
-
-
Save tomatohammado/92fdd5455b925b82e6213b278f0140c5 to your computer and use it in GitHub Desktop.
WDI Week 1 HW: airbnb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ cd De | |
| Desktop/ Dev/ | |
| ~ | |
| $ cd Dev/ga-wdi/ | |
| ~/Dev/ga-wdi | |
| $ ls | |
| class-work labs projects sandbox vestibule-fundamentals | |
| ~/Dev/ga-wdi | |
| $ cd class-work/week-1/ | |
| ~/Dev/ga-wdi/class-work/week-1 | |
| $ ls | |
| haiku to_oz wendy_bite | |
| ~/Dev/ga-wdi/class-work/week-1 | |
| $ mkdir css-airbnb | |
| ~/Dev/ga-wdi/class-work/week-1 | |
| $ ls | |
| css-airbnb haiku to_oz wendy_bite | |
| ~/Dev/ga-wdi/class-work/week-1 | |
| $ cd css-airbnb/ | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb | |
| $ git clone [email protected]:tomatohammado/css-airbnb.git | |
| Cloning into 'css-airbnb'... | |
| remote: Counting objects: 172, done. | |
| remote: Total 172 (delta 0), reused 0 (delta 0), pack-reused 172 | |
| Receiving objects: 100% (172/172), 1.04 MiB | 1.53 MiB/s, done. | |
| Resolving deltas: 100% (66/66), done. | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb | |
| $ code . | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb | |
| $ ls | |
| css-airbnb | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb | |
| $ cd css-airbnb/ | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb/css-airbnb (master) | |
| $ mv ../.. | |
| usage: mv [-f | -i | -n] [-v] source target | |
| mv [-f | -i | -n] [-v] source ... directory | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb/css-airbnb (master) | |
| $ cd .. | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb | |
| $ mv css-airbnb/ ../.. | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb | |
| $ cd ../.. | |
| ~/Dev/ga-wdi/class-work | |
| $ ls | |
| css-airbnb week-1 | |
| ~/Dev/ga-wdi/class-work | |
| $ cd w | |
| -bash: cd: w: No such file or directory | |
| ~/Dev/ga-wdi/class-work | |
| $ cd week-1/ | |
| ~/Dev/ga-wdi/class-work/week-1 | |
| $ ls | |
| css-airbnb haiku to_oz wendy_bite | |
| ~/Dev/ga-wdi/class-work/week-1 | |
| $ tree css-airbnb/ | |
| css-airbnb/ | |
| 0 directories, 0 files | |
| ~/Dev/ga-wdi/class-work/week-1 | |
| $ rmdir css-airbnb/ | |
| ~/Dev/ga-wdi/class-work/week-1 | |
| $ mv ../css-airbnb/ . | |
| ~/Dev/ga-wdi/class-work/week-1 | |
| $ ls | |
| css-airbnb haiku to_oz wendy_bite | |
| ~/Dev/ga-wdi/class-work/week-1 | |
| $ cd css-airbnb/ | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ ls ../haiku/ | |
| README.md spec tomatohammado.txt | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ ls ../to_oz/ | |
| Emerald City House Oz readme.md solution.md spec | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ ls ../wendy_bite/ | |
| Wendy-Bite.jpg WendyBite_Resume.png index.html spec | |
| WendyBite_AboutMe.png Wendy_Bite.txt readme.md style.css | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ ls | |
| LICENSE LICENSE.txt css img index.html readme.md solution.jpg | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ code . | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ git add index.html | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master +) | |
| $ git commit -m "Add Cabin font from google fonts" | |
| [master eb2445b] Add Cabin font from google fonts | |
| 1 file changed, 1 insertion(+) | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ git push | |
| Counting objects: 3, done. | |
| Delta compression using up to 4 threads. | |
| Compressing objects: 100% (3/3), done. | |
| Writing objects: 100% (3/3), 375 bytes | 375.00 KiB/s, done. | |
| Total 3 (delta 2), reused 0 (delta 0) | |
| remote: Resolving deltas: 100% (2/2), completed with 2 local objects. | |
| To git.generalassemb.ly:tomatohammado/css-airbnb.git | |
| 78ff8ef..eb2445b master -> master | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ open index.html | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master *) | |
| $ git status | |
| On branch master | |
| Your branch is up to date with 'origin/master'. | |
| Changes not staged for commit: | |
| (use "git add <file>..." to update what will be committed) | |
| (use "git checkout -- <file>..." to discard changes in working directory) | |
| modified: css/style.css | |
| no changes added to commit (use "git add" and/or "git commit -a") | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master *) | |
| $ git add css/style.css | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master +) | |
| $ git config --global core.editor "nano" | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master +) | |
| $ git config --list | |
| credential.helper=osxkeychain | |
| push.default=simple | |
| color.ui=always | |
| color.branch.current=green reverse | |
| color.branch.local=green | |
| color.branch.remote=yellow | |
| color.status.added=green | |
| color.status.changed=yellow | |
| color.status.untracked=red | |
| core.editor=nano | |
| core.excludesfile=/Users/ga/.gitignore_global | |
| user.name=Hammad Malik | |
| [email protected] | |
| core.repositoryformatversion=0 | |
| core.filemode=true | |
| core.bare=false | |
| core.logallrefupdates=true | |
| core.ignorecase=true | |
| core.precomposeunicode=true | |
| [email protected]:tomatohammado/css-airbnb.git | |
| remote.origin.fetch=+refs/heads/*:refs/remotes/origin/* | |
| branch.master.remote=origin | |
| branch.master.merge=refs/heads/master | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master +) | |
| $ git status | |
| On branch master | |
| Your branch is up to date with 'origin/master'. | |
| Changes to be committed: | |
| (use "git reset HEAD <file>..." to unstage) | |
| modified: css/style.css | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master +) | |
| $ git commit | |
| Aborting commit due to empty commit message. | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master +) | |
| $ git status | |
| On branch master | |
| Your branch is up to date with 'origin/master'. | |
| Changes to be committed: | |
| (use "git reset HEAD <file>..." to unstage) | |
| modified: css/style.css | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master +) | |
| $ git commit | |
| [master 97263ab] Add body background color, correct h1 color to match airbnb.com | |
| 1 file changed, 10 insertions(+), 1 deletion(-) | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (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 | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ gl | |
| * 97263ab (HEAD -> master) 40 seconds ago Hammad Malik | |
| | Add body background color, correct h1 color to match airbnb.com | |
| * eb2445b (origin/master, origin/HEAD) 10 minutes ago Hammad Malik | |
| | Add Cabin font from google fonts | |
| * 78ff8ef 1 year, 3 months ago Adrian Maseda | |
| | Update readme.md | |
| * 791faab 1 year, 4 months ago Steve Geluso | |
| | removing npm | |
| * bbbc24e 1 year, 5 months ago Brian Hague | |
| | add LICENSE | |
| * dc55788 1 year, 5 months ago Brian Hague | |
| | Added GA License | |
| * caa394c 1 year, 6 months ago Brian Hague | |
| | moved files, removed js dependencies | |
| * d155401 1 year, 6 months ago Brian Hague | |
| |\ Merge branch 'master' of github.com:WDI-SEA/TEMPLATE-js | |
| | * 1123aa4 1 year, 6 months ago Brian Hague | |
| | | reorganized files, removed deploy script | |
| * | 32f8910 1 year, 6 months ago Brian Hague | |
| |\ \ Merge branch 'master' of github.com:WDI-SEA/TEMPLATE-js | |
| | |/ | |
| | * 14fd606 1 year, 6 months ago Brian Hague | |
| | | vars on top optional | |
| | | * 5b41856 (origin/brian-finished) 1 year, 6 months ago Brian Hague | |
| | | | added title | |
| | | * f506a2e 1 year, 6 months ago Brian Hague | |
| | | | fixed linter warning w/h3s | |
| | | * 729f0aa 1 year, 6 months ago Brian Hague | |
| | | | added button styling and cleanup | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ git status | |
| On branch master | |
| Your branch is ahead of 'origin/master' by 1 commit. | |
| (use "git push" to publish your local commits) | |
| Changes not staged for commit: | |
| (use "git add <file>..." to update what will be committed) | |
| (use "git checkout -- <file>..." to discard changes in working directory) | |
| modified: css/style.css | |
| modified: index.html | |
| no changes added to commit (use "git add" and/or "git commit -a") | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master *) | |
| $ git add css/style.css | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master *+) | |
| $ git commit | |
| [master 4e1a083] Add Cabin font family to body | |
| 1 file changed, 1 insertion(+) | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master *) | |
| $ git add index.html | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master +) | |
| $ git commit | |
| [master 7788675] Add prelimary markup to body | |
| 1 file changed, 21 insertions(+), 1 deletion(-) | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ git push | |
| Counting objects: 11, done. | |
| Delta compression using up to 4 threads. | |
| Compressing objects: 100% (11/11), done. | |
| Writing objects: 100% (11/11), 1.68 KiB | 1.68 MiB/s, done. | |
| Total 11 (delta 4), reused 0 (delta 0) | |
| remote: Resolving deltas: 100% (4/4), completed with 1 local object. | |
| To git.generalassemb.ly:tomatohammado/css-airbnb.git | |
| eb2445b..7788675 master -> master | |
| ~/Dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ cd ~/dev/ga-wdi/class-work/week-1/css-airbnb/ | |
| ~/dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ code . | |
| ~/dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ ls | |
| LICENSE LICENSE.txt css img index.html readme.md solution.jpg | |
| ~/dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ git status | |
| On branch master | |
| Your branch is up to date with 'origin/master'. | |
| nothing to commit, working tree clean | |
| ~/dev/ga-wdi/class-work/week-1/css-airbnb (master) | |
| $ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment