Git has a limit of 4096 characters for a filename, except on Windows when Git is compiled with msys.
It uses an older version of the Windows API and there's a limit of 260 characters for a filename.
git config --system core.longpaths true| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>My HTML Input</h1> |
| DATABASE_URL=postgres://postgres:postgres@postgres:5432/postgres?sslmode=disable |
| export const ClickOutsideDirective = { | |
| beforeMount(el, binding) { | |
| el.clickOutsideEvent = function(event) { | |
| if (!(el == event.target || el.contains(event.target))) binding.value(); | |
| }; | |
| document.body.addEventListener('click', el.clickOutsideEvent); | |
| }, | |
| unmounted(el) { | |
| document.body.removeEventListener('click', el.clickOutsideEvent); | |
| }, |
| import { Component } from '@angular/core'; | |
| import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | |
| import { ReactiveFormsModule, FormGroup, FormControl } from '@angular/forms'; | |
| import { IPv4Validator } from './ipv4-validator'; | |
| describe('IPv4Validator', () => { | |
| let component: TestComponent; | |
| let fixture: ComponentFixture<TestComponent>; | |
| beforeEach(async(() => { |
| .thing { | |
| -webkit-print-color-adjust:exact; | |
| -webkit-filter:opacity(1); | |
| } |
Git has a limit of 4096 characters for a filename, except on Windows when Git is compiled with msys.
It uses an older version of the Windows API and there's a limit of 260 characters for a filename.
git config --system core.longpaths true| <?xml version="1.0" encoding="utf-8"?> | |
| <browserconfig> | |
| <msapplication> | |
| <tile> | |
| <square70x70logo src=“favicon-76.png”/> | |
| <square150x150logo src="favicon-228.png"/> | |
| <TileColor>#2b5797</TileColor> | |
| </tile> | |
| </msapplication> | |
| </browserconfig> |
| { | |
| "compilerOptions": { | |
| "paths": { | |
| "@app/*": ["src/app/*"], | |
| "@env/*": ["src/environments/*"], | |
| "@shared/*": ["src/app/shared/*"], | |
| "@core/*": ["src/app/core/*"] | |
| } | |
| } | |
| } |
| $ git remote rm origin | |
| $ git remote add origin [email protected]:aplikacjainfo/proj1.git | |
| $ git config master.remote origin | |
| $ git config master.merge refs/heads/master |
| .button { | |
| position: absolute; | |
| top: calc(50% - 50px); | |
| left: calc(50% - 50px); | |
| width: 100px; | |
| height: 100px; | |
| background-color: #27d6e6; | |
| border-radius: 50%; | |
| cursor: pointer; |