Deploy Ruby on Rails application with Railway🇻🇪 Spanish 💡Railway is a deployment platform where you can provision infrastructure, develop with that infrastructure locally, and then deploy to the cloud. Railway is a platform as a service similar to Heroku. It has a free trial plan subject to ...Mar 27, 2023·4 min read·1.3K
Merging branches with Git💡Git merge command take the independent lines of development created by git branch and integrate them into another branch.Mar 24, 2023·1 min read·42
Showing commit logs with Git💡 You can see the history of changes in a branch using git log command.Mar 24, 2023·1 min read·76
Deleting a branch with Git💡A branch can be deleted, this applies only to locals branches.Mar 24, 2023·1 min read·40
Renaming a branch with Git🇻🇪 Spanish 1.- Enter inside the branch that you want to rename with git checkout command <branch's_name_to_be_rename> git checkout stable 2.- Execute git branch -m <branch's_name_new> command to change the name of the branch. You can see the chan...Mar 24, 2023·1 min read·19
Creating branches with Git💡A branch in git is an independent line of development in the repository. A branch evolves independently to another branches.Mar 24, 2023·1 min read·54
Deleting a commit with Git💡 If you want to delete a commit you can do an interactive rebase.Mar 24, 2023·1 min read·69