OpenSource/Spring Boot
ace-t의 Spring Boot 따라잡기(기본 - SourceTree에 연결 및 Repository에 올리기)
태하팍
2016. 3. 23. 11:49
1. 로컬에 있는 소스를 소스트리에 연동 시킵니다.

2. 아래와 같이 gitignore.io에 접속하여 커밋하면 안되거나 불필요한 액션을 줄이기 위해 ignore할 파일들에 대해서 Generate 해줍니다.
https://www.gitignore.io/

/.git/info의 exclude에 위에서 생성되어진 내용을 붙여넣기를 해준다.
붙여넣을 내용.
### Gradle ###.gradlebuild/# Ignore Gradle GUI configgradle-app.setting# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)!gradle-wrapper.jar# Cache of project.gradletasknamecache### Intellij #### Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm*.iml## Directory-based project format:.idea/# if you remove the above rule, at least ignore the following:# User-specific stuff:# .idea/workspace.xml# .idea/tasks.xml# .idea/dictionaries# .idea/shelf# Sensitive or high-churn files:# .idea/dataSources.ids# .idea/dataSources.xml# .idea/sqlDataSources.xml# .idea/dynamic.xml# .idea/uiDesigner.xml# Gradle:# .idea/gradle.xml# .idea/libraries# Mongo Explorer plugin:# .idea/mongoSettings.xml## File-based project format:*.ipr*.iws## Plugin-specific files:# IntelliJ/out/# mpeltonen/sbt-idea plugin.idea_modules/# JIRA pluginatlassian-ide-plugin.xml# Crashlytics plugin (for Android Studio and IntelliJ)com_crashlytics_export_strings.xmlcrashlytics.propertiescrashlytics-build.propertiesfabric.properties
그러한 뒤에 github에 push를 해주면 된다.

- 끝 -