Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAlex Cory
7,069 PointsGit Commit Questions
So when I commit my Git file, it brings me to the page where I type in the notes about this commit. Once I get done writing the notes I should be able to hit ctrl X and followed with Y to finish the commit, however there is no Y to follow it. This is what it says ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y) at the bottom instead of what it shows on the 'Committing Changes' video in Git Basics.. How do I finish this commit?
2 Answers
James Kennedy
20,755 Pointspress escape and down the bottom type :wq
a better way is to write the message when commiting using
git commit -m "your message here"
Alex Cory
7,069 Points^