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 trial

Development Tools GitHub Basics Working on a Team Creating an Organization

Github Intellij

Does treehouse teaching how to Git from Intellij? If not I hope they do a video also please send a link where I can practice how to Git my java files to my git :)

ty

1 Answer

Hi there,

If you take the Git Basics or the GitHub Basics course, you can use the command line Git commands in the terminal within IntelliJ.

Open up the terminal, start a repo with git init, add your files with git add . then commit them with git commit -m 'Message'. For remote repos, set up the repo remotely first, then follow the instructions to link your reote repo to your local one with git remote add origin URL and then git push -u origin master.

There is lots more than this in Git, but you can learn that separately to IntelliJ and apply that in the terminal.

I hope that helps,

Steve.