Skip to content

armandoamador30/techm-University-Development

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

techm-University-Development

Welcome to temporal TechM university repo for Devs

Create folders using snake case

Compile and run

Compilar:

javac FileName.java

Correr:

java ClassName

Mentees

Fork the project

Clone the repo

git clone git@github.com:<your.space>/techm-university-development.git

Add remote upstream

git remote add upstream git@github.com:ichi0915/techm-university-development.git

Create your branch from master

git checkout -b <generationName>/<name-lastname>

Push your branch to upstream

git push -u upstream <generationName>/<name-lastname>

Create subsequent branches from your branch <generationName>/<name-lastname>

git checkout <generationName>/<name-lastname>
git checkout -b new-branch
git push -u origin new-branch

Create Merge Request using your branch(<generationName>/<name-lastname>) as target

Update master branch

git fetch upstream
git checkout master
git rebase -i upstream/master
git push origin master

Rebase your branch from master

git fetch upstream
git checkout <generationName>/<name-lastname>
git rebase -i upstream/master
git push upstream <generationName>/<name-lastname>

Mentors

Create a folder for docs

Create a folder for source

All the subjects should have a README

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%