See conflicted files
git diff --name-only --diff-filter=U
Commit with multi line messages
git commit -F- <<EOF
- Your message 1
git diff --name-only --diff-filter=U
git commit -F- <<EOF
- Your message 1
var UID = { | |
_current: 0, | |
getNew: function(){ this._current++; return this._current; }, | |
_props: {}, | |
addProp: function(id, prop, value) { | |
this._props[id] = { | |
prop : prop, | |
value: value | |
}; | |
}, |
import java.sql.Connection; | |
import java.sql.DriverManager; | |
import java.sql.ResultSet; | |
import java.sql.Statement; | |
import javafx.application.Application; | |
import javafx.beans.property.SimpleStringProperty; | |
import javafx.collections.FXCollections; | |
import javafx.collections.ObservableList; | |
import javafx.event.ActionEvent; |
<?xml version="1.0" encoding="utf-8"?> | |
<!-- Directory : [Project]/Assets/Plugins/Android/AndroidManifest.xml --> | |
<!-- Configure according to your android application information. --> | |
<manifest | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.unity3d.player" | |
android:installLocation="preferExternal" | |
android:versionCode="1" | |
android:versionName="1.0"> | |
<supports-screens |