mercredi 21 mai 2014

Copier un projet existant dans git pour le contrôle de version - Stack Overflow


Good day people.


Please help me. I'm going to get job in big company where overall uses version management. And I stared to learn git. I want to copy my project into newly created git repository to start version control. My project structure is:


.
├── pom.xml
├── src
│   ├── main
│   │   ├── java
│   │   │   ├── demidov
│   │   │   │   └── pkg
│   │   │   │   ├── domain
│   │   │   │   │   ├── ComputerMaintenanceEvent.java
│   │   │   │   │   ├── SoftwareDevelopmentEvent.java
│   │   │   │   │   ├── TheUser.java
│   │   │   │   │   ├── UserContactInfo.java
│   │   │   │   │   └── UserEvents.java
│   │   │   │   ├── persistence
│   │   │   │   │   ├── AppOut.java
│   │   │   │   │   ├── UserSecurityService.java
│   │   │   │   │   ├── WebContentDAOIF.java
│   │   │   │   │   └── WebContentDAOImpl.java
│   │   │   │   ├── service
│   │   │   │   └── web
│   │   │   │   ├── LoginController.java
│   │   │   │   └── RenderSiteController.java
│   │   │   ├── userEvents.hbm.xml
│   │   │   └── user.hbm.xml
│   │   ├── resources
│   │   └── webapp
│   │   ├── resources
│   │   │   ├── css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-responsive.css
│   │   │   │   └── bootstrap-responsive.min.css
│   │   │   ├── img
│   │   │   │   ├── background_java.jpg
│   │   │   │   ├── glyphicons-halflings.png
│   │   │   │   └── glyphicons-halflings-white.png
│   │   │   └── js
│   │   │   ├── bootstrap.js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── jquery-1.10.2.min.js
│   │   │   ├── jquery.nav.js
│   │   │   └── jquery.scrollTo.js
│   │   └── WEB-INF
│   │   ├── spring
│   │   │   ├── security-context.xml
│   │   │   ├── servletConfig
│   │   │   │   └── servlet-context.xml
│   │   │   └── spring-context.xml
│   │   ├── view
│   │   │   ├── home.jsp
│   │   │   └── login.jsp
│   │   └── web.xml
│   └── test
│   ├── java
│   └── resources
└── target
├── classes
│   ├── demidov
│   │   └── pkg
│   │   ├── domain
│   │   │   ├── ComputerMaintenanceEvent.class
│   │   │   ├── SoftwareDevelopmentEvent.class
│   │   │   ├── TheUser.class
│   │   │   ├── UserContactInfo.class
│   │   │   └── UserEvents.class
│   │   ├── persistence
│   │   │   ├── AppOut.class
│   │   │   ├── UserSecurityService.class
│   │   │   ├── WebContentDAOIF.class
│   │   │   └── WebContentDAOImpl.class
│   │   ├── service
│   │   └── web
│   │   ├── LoginController.class
│   │   └── RenderSiteController.class
│   ├── userEvents.hbm.xml
│   └── user.hbm.xml
├── m2e-wtp
│   └── web-resources
│   └── META-INF
│   ├── MANIFEST.MF
│   └── maven
│   └── demidov.pkg
│   └── webcontent
│   ├── pom.properties
│   └── pom.xml
└── test-classes

How can I add it into git to start my version management?? Thank you with best regards.




From the root of your personal project, did you run git init and then git add .?



Good day people.


Please help me. I'm going to get job in big company where overall uses version management. And I stared to learn git. I want to copy my project into newly created git repository to start version control. My project structure is:


.
├── pom.xml
├── src
│   ├── main
│   │   ├── java
│   │   │   ├── demidov
│   │   │   │   └── pkg
│   │   │   │   ├── domain
│   │   │   │   │   ├── ComputerMaintenanceEvent.java
│   │   │   │   │   ├── SoftwareDevelopmentEvent.java
│   │   │   │   │   ├── TheUser.java
│   │   │   │   │   ├── UserContactInfo.java
│   │   │   │   │   └── UserEvents.java
│   │   │   │   ├── persistence
│   │   │   │   │   ├── AppOut.java
│   │   │   │   │   ├── UserSecurityService.java
│   │   │   │   │   ├── WebContentDAOIF.java
│   │   │   │   │   └── WebContentDAOImpl.java
│   │   │   │   ├── service
│   │   │   │   └── web
│   │   │   │   ├── LoginController.java
│   │   │   │   └── RenderSiteController.java
│   │   │   ├── userEvents.hbm.xml
│   │   │   └── user.hbm.xml
│   │   ├── resources
│   │   └── webapp
│   │   ├── resources
│   │   │   ├── css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-responsive.css
│   │   │   │   └── bootstrap-responsive.min.css
│   │   │   ├── img
│   │   │   │   ├── background_java.jpg
│   │   │   │   ├── glyphicons-halflings.png
│   │   │   │   └── glyphicons-halflings-white.png
│   │   │   └── js
│   │   │   ├── bootstrap.js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── jquery-1.10.2.min.js
│   │   │   ├── jquery.nav.js
│   │   │   └── jquery.scrollTo.js
│   │   └── WEB-INF
│   │   ├── spring
│   │   │   ├── security-context.xml
│   │   │   ├── servletConfig
│   │   │   │   └── servlet-context.xml
│   │   │   └── spring-context.xml
│   │   ├── view
│   │   │   ├── home.jsp
│   │   │   └── login.jsp
│   │   └── web.xml
│   └── test
│   ├── java
│   └── resources
└── target
├── classes
│   ├── demidov
│   │   └── pkg
│   │   ├── domain
│   │   │   ├── ComputerMaintenanceEvent.class
│   │   │   ├── SoftwareDevelopmentEvent.class
│   │   │   ├── TheUser.class
│   │   │   ├── UserContactInfo.class
│   │   │   └── UserEvents.class
│   │   ├── persistence
│   │   │   ├── AppOut.class
│   │   │   ├── UserSecurityService.class
│   │   │   ├── WebContentDAOIF.class
│   │   │   └── WebContentDAOImpl.class
│   │   ├── service
│   │   └── web
│   │   ├── LoginController.class
│   │   └── RenderSiteController.class
│   ├── userEvents.hbm.xml
│   └── user.hbm.xml
├── m2e-wtp
│   └── web-resources
│   └── META-INF
│   ├── MANIFEST.MF
│   └── maven
│   └── demidov.pkg
│   └── webcontent
│   ├── pom.properties
│   └── pom.xml
└── test-classes

How can I add it into git to start my version management?? Thank you with best regards.



From the root of your personal project, did you run git init and then git add .?


0 commentaires:

Enregistrer un commentaire