This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################# | |
# Push de la rama actual | |
git push origin $rama_actual | |
############################################# | |
# Volver a un commit anterior, descartando los cambios | |
git reset --HARD $SHA1 | |
############################################# | |
# Ver y descargar Ramas remotas |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
import React, { Component } from 'react'; | |
import { View, Text, TouchableOpacity, Platform, Alert, PermissionsAndroid, TextInput } from 'react-native'; | |
import Sound from 'react-native-sound'; | |
import { AudioRecorder, AudioUtils } from 'react-native-audio'; | |
import RNFetchBlob from 'react-native-fetch-blob'; | |
import Icon from 'react-native-vector-icons/Entypo'; | |
import RNPickerSelect from 'react-native-picker-select'; | |
import Spinner from 'react-native-loading-spinner-overlay'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Clonar un repositorio remoto | |
---------------------------- | |
git remote add origin url-remote-repository | |
git pull origin master (o rama a clonar) | |
Traer ramas remotas a local | |
---------------------------- | |
git fetch origin (con esto traemos todas las ramas remotas) | |
git branch -a | |
git checkout -b nombre_rama_local remotes/origin/nombre_rama_remota |